个人案例
暂无发表的小程序案例
- 服务号子菜单跳转h5携带自定义参数?
现在有一个服务号的子菜单,比如url="www.xxx.com",我想点击跳转的时候携带 自定义参数比如 www.xxx.com?name=xyl 请问该如何实现
2020-07-30 - properties的observer会触发两次?
saasOb: { type: String, value: null, observer: function(newValue,oldVal){ } } 改变saasOb 会调用两次obsever
2020-03-18 - 插件的properties里的type为object,observer会触发两次?
我在插件里定义了一个对象,当监听到对象发生变化时触发observer obj: { type: Object, observer: function (newVal, oldVal) { console.log("observer触发:"+newVal) } } 比如 obj = { a: 123, b: 456, c: 789 } 当在外面修改插件obj的时候,会触发两次observer,请问这是怎么回事
2020-03-18 - 小程序插件怎么获取图片的大小?
我在插件的API调用限制里面只找到: wx.getImageInfo(Object object) 这个里面没有图片的大小属性,该如何获取?
2020-03-12 - EEXIST: file already exists?
[图片] 请问这是怎么回事
2020-01-17 - 小程序插件获取元素的宽度?
在插件里面获取元素的宽度报错: wxml: <image class="section1-image" src="{{saasOb.cropImage}}" bindload="imageLoad" id="section1Image" /> js: imageLoad: function(e) { //选择id var that = this; const query = wx.createSelectorQuery() query.select('#section1Image').boundingClientRect() query.selectViewport().scrollOffset() query.exec(function (res) { console.log(JSON.stringify(res)) res[0].width console.log("rect.width:" +res[0].width) that.setData({ // height: rect.width + 'px' imageWidth: res[0].width * 2 }) }) }, Consolo: [null,{"id":"","dataset":{},"scrollLeft":0,"scrollTop":0,"scrollWidth":379,"scrollHeight":635}] thirdScriptError Cannot read property 'width' of null;at SelectorQuery callback function TypeError: Cannot read property 'width' of null
2020-01-17 - 小程序插件onLoad没有执行?
wx.navigateTo({ url: 'plugin://myPlugin/ppp'; 在page页面使用上述代码跳转插件,插件里的onLoad函数没有执行, 是不允许吗?如果不允许的话有其他方式能替代 接收跳转携带的参数吗?
2020-01-16 - 插件如何跳回调用方?
小程序跳转(navigator)插件,插件处理完逻辑后如何跳回小程序
2020-01-15 - 小程序如何调用插件的方法 给插件传值?
小程序 想刷新插件的值,该如何写?
2019-12-19 - 小程序动画在手机上调试没效果?
在开发者工具上动画效果是好的,代码如下: const animation = wx.createAnimation({ duration: 1200 timingFunction: 'ease' }) animation.rotateY(180).step() this._setAnimationFlip(animation.export()) 但是预览 在手机上 ios和安卓都没动画效果 也不报错
2019-12-18