常用的数据拼接方法(不断更新中)

  trim(str) {     return str.replace(/(^\s*)|(\s*$)/g, "");   } 转换数据格式   convertField(record) {     return {       code: record.label,       name: record.label,       ord: record.key     }   } // 转换数组   reverseFieldInArray(data) {     return data.map((record) => {       if (Object.keys(record).length == 0) {         return {}       } else {         return {           key: record.ord,           label: record.name         }       }     })   } //对象数组去重 let hash = {};     btnValue = resetValue.reduce((preVal, curVal) => {       hash[curVal.ord] ? '' : hash[curVal.ord] = true && preVal.push(curVal);       return preVal     }, [])
上一篇:G2 RangeError: toFixed() digits argument must be between 0 and 100


下一篇:转载-CAP 定理的含义