Echars小知识点

最近在做echars的微信小程序,遇到些小知识点,这里记录下

1、去掉echars图表底下的分类标识

将option里面的legend去掉就可以了

legend: {

left: 'center',

top: 'bottom',

// data: ['rose1', 'rose2', 'rose3', 'rose4', 'rose5', 'rose6', 'rose7', 'rose8']

},

2、数组赋值,直接push就好

this.globalData.action.push(res.data[index].action)

3、循环赋值 index是下标哦

for(var index in res.data){

this.globalData.action.push(res.data[index].action)

this.globalData.time.push(res.data[index].time)

}

4、回调函数

wx.request({

url: 'https://timeload.com?userName=liuxiaoxin',

dataType: 'json',

success : res => {

for(var index in res.data){

this.globalData.action.push(res.data[index].action)

this.globalData.time.push(res.data[index].time)

}

if (this.checkRequestTwoCallback) {

this.checkRequestTwoCallback(res)

}

}

})

 

这段里面回调函数是下面这段

if (this.checkRequestTwoCallback) {

this.checkRequestTwoCallback(res)

}

checkRequestTwoCallback这个名字随便取就好

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值