您好,登錄后才能下訂單哦!
這篇文章給大家分享的是有關js如何刪除對象/數組中null、undefined、空對象及空數組的內容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。
代碼如下:
let obj = { a: { a_1: 'qwe', a_2: undefined, a_3: function (a, b) { return a + b; }, a_4: { a_4_1: 'qwe', a_4_2: undefined, a_4_3: function (a, b) { return a + b; }, a_4_4: { a_4_4_1: undefined, a_4_4_2: undefined, a_4_4_3: undefined, a_4_4_4: { a_4_4_4_1: undefined, a_4_4_4_2: undefined, a_4_4_4_3: undefined, a_4_4_4_4: undefined, a_4_4_4_5: undefined, a_4_4_4_6: undefined } } } }, b: [{ a_1: 'qwe', a_2: undefined, a_3: function (a, b) { return a + b; }, a_4: { a_4_1: 'qwe', a_4_2: undefined, a_4_3: function (a, b) { return a + b; }, a_4_4: { a_4_4_1: undefined, a_4_4_2: undefined, a_4_4_3: undefined, a_4_4_4: { a_4_4_4_1: undefined, a_4_4_4_2: undefined, a_4_4_4_3: undefined, a_4_4_4_4: undefined, a_4_4_4_5: undefined, a_4_4_4_6: undefined } } } }], c: [{ a: undefined, b: undefined, c: undefined, d: undefined }, { a: undefined, b: undefined, c: undefined, d: undefined }] };
以下是javaScript部分:
//判斷對象是否沒有屬性,如{}或者[] function isEmptyObj(o) { for (let attr in o) return !1; return !0 } function processArray(arr) { for (let i = arr.length - 1; i >= 0; i--) { if (arr[i] === null || arr[i] === undefined) arr.splice(i, 1); else if (typeof arr[i] == 'object') removeNullItem(arr[i], arr, i); } return arr.length == 0 } function proccessObject(o) { for (let attr in o) { if (o[attr] === null || o[attr] === undefined) delete o[attr]; else if(typeof o[attr]=='object') { removeNullItem(o[attr]); if (isEmptyObj(o[attr])) delete o[attr]; } } } function removeNullItem(o,arr,i) { let s = ({}).toString.call(o); if (s == '[object Array]') { if (processArray(o) === true) {//o也是數組,并且刪除完子項,從所屬數組中刪除 if (arr) arr.splice(i, 1); } } else if (s == '[object Object]') { proccessObject(o); if (arr&&isEmptyObj(o)) arr.splice(i, 1); } } removeNullItem(obj) console.log(obj)
如果只處理對象null,undefined項,不移除數組中undefined,null的項,保持數組長度則去掉removeNullItem,processArray刪除數項即可,測試數據在上面示例中
-收縮JavaScript代碼
function processArray(arr) { for (let i = arr.length - 1; i >= 0; i--) { /*if (arr[i] === null || arr[i] === undefined) arr.splice(i, 1); else */if (typeof arr[i] == 'object') removeNullItem(arr[i], arr, i); } return arr.length == 0 } function removeNullItem(o,arr,i) { let s = ({}).toString.call(o); if (s == '[object Array]') { if (processArray(o) === true) {//o也是數組,并且刪除完子項,從所屬數組中刪除 //if (arr) arr.splice(i, 1); } } else if (s == '[object Object]') { proccessObject(o); //if (arr&&isEmptyObj(o)) arr.splice(i, 1); } }
附:javascript 判斷變量 是否為空null,undefined, 空數組,空對象,空Object,字符串是否為空或全由空白字符組成,數字是否為0,布爾是否為false。由于Object沒有length用
Object.keys()適用于數組(IE8不支持此屬性),對象 返回可枚舉的實例屬性名組成的數組來判斷是否為空。
利用邏輯判斷中or (||)只要有一項為真則不再計算下一個表達式 來實現不管傳入的參數是何種類型。只要符合我對空的定義即返回true。
function IsNothing(e) { var isNt = e === 0 || e === false || e === null || e === undefined || Object.keys(e).length === 0 || /^\s*$/gim.test(e.toString()); return isNt; }
感謝各位的閱讀!關于“js如何刪除對象/數組中null、undefined、空對象及空數組”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。