commonUseUrlGetMethod() {
????????????????return new Promise((resolve, reject) => {
????????????????????????????????this.$api.commonPostApi(this.url,this.reqParams).then(res => {? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ????????????????????????????????????????????if (res) {? ?resolve(res.data);? }? ?})
????????????????????????????????????????????????????.catch(err => {reject(err); })
? ? ? ? ? ? ? ? ? })?
}
// arry.map 返回obj里面指定的屬性
example:?
var arr = [{a: 1,b:2}, {a: 333, b: 444}];?
var dealArr = arr.map(item => {return item.a}) // 打印結(jié)果 ([1,333]);
// 循環(huán)往數(shù)組中插入對象時要確保每次都創(chuàng)建一個新的對象
res.forEach((item, index) => {
let itemObj = {};
itemObj['name'] = item.configuration_name;
itemObj['value'] = item.person_count;
seriesDataArr.push(itemObj);
})