问题有关:Vue-axios-echarts,求大佬帮忙
java:
public List<MachineState> machinestate(){
List<MachineState> machinestate=this.echartsMapper.MachineState();
for(MachineState state:machinestate) {
if(state.getSystemstate()==1) {
state.setState("在线");//数据拿到字段systemstate等于1是为在线状态
}else if(state.getSystemstate()==2) {
state.setState("离线");//为2是离线状态
}
}
return machinestate;
}
json:
[{"systemstate":1,"count":1,"state":"在线"},{"systemstate":2,"count":3,"state":"离线"}]
html页面中代码是这样子的
这个是js代码
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你在settimeout的回调函数之中使用了this,它并不包含echart对象。应当在外面定义let _this= this,之后在settimeout回调函数内使用_this.$echart