这果然是一个有趣的现象:当你对一门语言入门后学习其他知识 如鱼得水。工作情况特殊 独自一人负责项目的前后台 以及小程序的开发。。O(∩_∩)O哈哈~ 还算能hold住 。之前也没有专门去学过 小程序 ,被逼无奈的情况下 看了两天API 发现也就那么回事,只是有些细节问题的处理确实需要一定的经验积累了。无论怎样当我解决一个我觉得能让我成长的问题时,我会竟可能以博客的形式记录下来,方便自己查看。亦可以给别人一点启发 何乐而不为!
1 2 3 |
<view class="container"> <ec-canvas id="mychart-dom-bar" canvas-id="mychart-bar" ec="{{ ec }}"></ec-canvas> </view> |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 |
import * as echarts from '../../ec-canvas/echarts'; var barec = null Page({ onShareAppMessage: function (res) { return { title: 'ECharts 可以在微信小程序中使用啦!', path: '/pages/index/index', success: function () { }, fail: function () { } } }, data: { ec: { onInit: function (canvas, width, height) { barec = echarts.init(canvas, null, { width: width, height: height }); canvas.setChart(barec); return barec; } } }, onReady() { setTimeout(this.getData, 500); }, //getData方法里发送ajax getData(){ wx.showLoading({ title: '加载中...', }) wx.request({ url: 'http://192.168.3.81/heart.php', herder:{ "content-type":"json" }, success:function(res){ console.log(res); var data = res.data.info; console.log(data); barec.setOption({ grid: { left: '3%', right: '7%', bottom: '3%', containLabel: true }, tooltip: { // trigger: 'axis', showDelay: 0, formatter: function (params) { if (params.value.length > 1) { return params.seriesName + ' :<br/>' + params.value[0] + 'm ' + params.value[1] + 'm '; } else { return params.seriesName + ' :<br/>' + params.name + ' : ' + params.value + 'm '; } }, axisPointer: { show: true, type: 'cross', lineStyle: { type: 'dashed', width: 1 } } }, legend: { data: ["学生"], left: 'center' }, xAxis: [ { type: 'value', scale: true, axisLabel: { formatter: '{value} m' }, splitLine: { show: false } } ], yAxis: [ { type: 'value', scale: true, axisLabel: { formatter: '{value} m' }, splitLine: { show: false } } ], series: [{ name: '学生', // symbolSize: 20, data:data, type: 'scatter', markArea: { silent: true, itemStyle: { normal: { color: 'transparent', borderWidth: 1, borderType: 'dashed' } }, data: [[{ name: '教室', xAxis: '0', yAxis: '0' }, { xAxis: '20', yAxis: '20' }]] }, markPoint: { // data: [ // { type: 'max', name: '最大值' }, // { type: 'min', name: '最小值' } // ] }, markLine: { lineStyle: { normal: { type: 'solid' } }, // data: [ // { type: 'average', name: '平均值' }, // { xAxis: 160 } // ] } }] }) wx.hideLoading(); }, fail: function (res) { }, complete: function (res) { }, }) } }); |