- 用户端和非用户端放在同一个小程序里面可以发布吗?
需求是将两个小程序的内容放在一个小程序里面,可以发布成功吗?
2020-11-16 - 小程序中echarts第一次编译不显示,第二次才会显示,以此类推,这是什么情况?
import * as echarts from '../../ec-canvas/echarts'; let chart = null; function initChart(canvas, width, height, dpr) { chart = echarts.init(canvas, null, { width: width, height: height, devicePixelRatio: dpr // new }); canvas.setChart(chart); console.log(canvas) var option = { tooltip: { animation: true, trigger: 'axis', formatter:`{b0} {c0}分` }, xAxis: { type: 'category', data: ['09/05 13:00', '09/05 14:00', '09/05 15:00', '09/05 16:00', '09/05 17:00', '09/05 18:00', '09/05 19:00'] }, yAxis: { type: 'value' }, series: [{ data: [6, 4, 2, 0, -2, -4, -6], type: 'line' }] }; chart.setOption(option); return chart; } Page({ data: { ec: { onInit: initChart } }, onLoad(){}, onReady(){ }, }); <view class="container"> <ec-canvas id="mychart-dom-bar" style="width:800rpx;height:800rpx;" canvas-id="mychart-bar" ec="{{ ec }}"></ec-canvas> </view>
2020-09-14 - 体验版本中接口失效是怎么回事?
练习写的小程序,使用https://api.apiopen.top/searchMusic?name=${muictext}网上找到的搜索音乐的接口,调试的时候都可以使用,也在公众平台上添加了,但是进入体验版就是调用不了,一开始体验版的调试就可以[图片]
2020-01-08