- 如何设置独立分包供接受第三方小程序跳转并获取传过来的参数,且跳转时无需下载我的主包?
如何设置独立分包供接受第三方小程序跳转并获取传过来的参数,且跳转时无需下载我的主包?
2020-06-10 - 跪求微信开发者工具V1.02.1910120工具?
跪求微信开发者工具V1.02.1910120工具?
2020-04-10 - 微信开发者工具升级了,导致我们这边的一个组件用不了了,那位有历史版本连接呀,3月份的就刚刚好?
微信开发者工具升级了,导致我们这边的一个组件用不了了,那位有历史版本连接呀,3月份的就刚刚好?
2020-04-09 - 小程序如何让两个视图组件重叠部分设置为半透明,其他正常呀?
[图片]效果图是这样子的怎么实现呢?
2020-01-20 - 获取组件时并调用组件功能时有时报空指针?
这个是调用组件的代码: isTimeout: function( ){ let that = this; console.log("超时调用"); this.setData({ isTimeout: false, cliCode: '1', imgvCode: false, imgTime: app.$UTIL.generateSignTime2()+this.data.imgTimeLimit, }) this.selectComponent('#use').onTap(); } 下面是组件的代码: // my-component/random-code.js var Mcaptcha = require('../../utils/mcaptcha.js'); var $MSG = require('../../utils/msg.js'); Component({ /** * 组件的属性列表 */ properties: { }, /** * 组件的初始数据 */ data: { text: '', }, /** * 组件的方法列表 */ methods: { //刷新验证码 onTap() { this.mcaptcha.refresh(); }, validate(imgCode) { var res = this.mcaptcha.validate(imgCode); if (imgCode == '' || imgCode == null ) { wx.showModal({ content: $MSG.IMG_CODE_NULL, showCancel:false }) return false; } if (!res) { // wx.showModal({ // content:'图形验证码有误', // showCancel: false // }) return false; } return true; } }, ready: function() { var that = this this.mcaptcha = new Mcaptcha({ el: 'canvas', width: 80, height: 35, createCodeImg: "", target: that }); } }) 偶尔在this.mcaptcha.refresh(); 报 Cannot read property 'onTap' of null; [Component] Event Listener Error @ my-component/verify-code/verify-code#(anonymous) TypeError: Cannot read property 'onTap' of null at _e.isTimeout (https://pages/index/index.js:1053:26) 错误
2019-11-22 - 采用arc组件动态画圆时有卡顿感?
这个是我的代码circle.js // 详情请看https://blog.csdn.net/Charles_Tian/article/details/80908442 Component({ properties: { num: { type: Number, value: 0, }, myValue: { type: String, value: '', }, all: { type: Number, value: 1, } }, data: { timer: '' }, ready(options) { // 页面初始化 options为页面跳转所带来的参数 let that = this; // 以下两个是测试数据 let totalItems = 100; let rightItems = 100; let showItems = (100 * that.properties.num / that.properties.all).toFixed(0); // let completePercent = parseInt((rightItems / totalItems) * 100); // that.getResultComment(completePercent); that.showScoreAnimation(rightItems, totalItems, showItems); }, methods: { showScoreAnimation: function (rightItems, totalItems,number) { /* cxt_arc.arc(x, y, r, sAngle, eAngle, counterclockwise); x Number 圆的x坐标 y Number 圆的y坐标 r Number 圆的半径 sAngle Number 起始弧度,单位弧度(在3点钟方向) eAngle Number 终止弧度 counterclockwise Boolean 可选。指定弧度的方向是逆时针还是顺时针。默认是false,即顺时针。 */ let that = this; let copyRightItems = 0; that.setData({ timer: setInterval(function () { copyRightItems++; if (copyRightItems == number) { clearInterval(that.data.timer) } else { // 页面渲染完成 // 这部分是灰色底层 let cxt_arc = wx.createCanvasContext('canvasArc', that);//创建并返回绘图上下文context对象。 cxt_arc.setLineWidth(6);//绘线的宽度 cxt_arc.setStrokeStyle('#d2d2d2');//绘线的颜色 cxt_arc.setLineCap('round');//线条端点样式 cxt_arc.beginPath();//开始一个新的路径 cxt_arc.arc(180, 120, 100, 0, 2 * Math.PI, false);//设置一个原点(53,53),半径为50的圆的路径到当前路径 cxt_arc.stroke();//对当前路径进行描边 //这部分是蓝色部分 cxt_arc.setLineWidth(6); cxt_arc.setStrokeStyle('#33b7c3'); cxt_arc.setLineCap('round') cxt_arc.beginPath();//开始一个新的路径 cxt_arc.arc(180, 120, 100, -Math.PI * 1 / 2, 2 * Math.PI * (copyRightItems / totalItems) - Math.PI * 1 / 2, false); cxt_arc.stroke();//对当前路径进行描边 cxt_arc.draw(); } }, 20) }) }, } }) 很是奇怪呢
2019-09-18