在vue中定義數組對象的方法:1.新建vue.js項目;2使用personQueryList方法定義數組對象;
具體步驟如下:
1.首先,在vue-cli中創建一個vue.js項目;
vue create project-name
2.vue.js項目創建好后,在項目中使用personQueryList方法即可定義一個數組對象;
personQueryList(this.paramType).then(res => {
for (let i = 0; i < res.records.length; i++) {
this.options[i] = {
label: res.records[i].name,
value: res.records[i].code
}
}
})
相關擴展:
1)對數組對象進行去重
methods:{
unique(arr) { // 根據唯一標識orderId來對數組進行過濾
const res = new Map();
return arr.filter((arr) => !res.has(arr.OrderId) && res.set(arr.OrderId, 1))
},
}
this.arr = this.unique(this.arr);
2.對數組對象進行排序
created() {
this.$axios.run(***, (res) => {
if (res.code === 0) {
this.arr= res.data;
this.arr.sort(this.compare('code'));
this.selectInit(res.data);
}
});
this.onInit();
},
methods: {
compare(property) {
return function(a, b) {
let value1 = a[property];
let value2 = b[property];
return value1 - value2;
};
},