在vue中定义数组对象的方法:1.新建vue.js项目;2使用personQueryList方法定义数组对象;
具体步骤如下:
首先,在vue-cli中创建一个vue.js项目;
vue create project-name
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);
对数组对象进行排序
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;
};
},