语法错误,跟一个if没有啥关系,else 后面没有条件的 一般啥 elif="{{}}"
问一下大神一个wxml里只能有一个wx:if吗?为什么我放太多会无效[图片]
2020-03-08香港小程序原生的怎么接支付,怎么只看到有h5的
境外微信支付请求统一支付接口https://api.mch.weixin.qq.com/pay/unifiedorder提示 ( [return_code] => FAIL [return_msg] => 暂不支持该商户使用本api接口 )
2020-03-08这个问题我也一直出现过,最终在调试时发现外层包了个<block wx:if="{{xxx}}"> .... </block>导致的,去掉那层判断就不会报错了
小程序中 第二个 Recycle-view 创建的时候会报错,哪个大神给看下?VM5715:1 thirdScriptError the recycle-view correspond to this context is detached, pls create another RecycleContext;at api request success callback function Error: the recycle-view correspond to this context is detached, pls create another RecycleContext at RecycleContext.checkComp (http://127.0.0.1:55001/appservice/miniprogram_npm/miniprogram-recycle-view/index.js:485:15) at RecycleContext.appendList (http://127.0.0.1:55001/appservice/miniprogram_npm/miniprogram-recycle-view/index.js:491:10) at success (http://127.0.0.1:55001/appservice/pages/main/index.js:58:16) at Function.o.(anonymous function) (http://127.0.0.1:55001/appservice/__dev__/WAService.js:1:1176040) at http://127.0.0.1:55001/appservice/__dev__/WAService.js:1:107450 at C (http://127.0.0.1:55001/appservice/__dev__/WAService.js:1:441389) at i.(http://127.0.0.1:55001/appservice/__dev__/WAService.js:1:741305) at i.emit (http://127.0.0.1:55001/appservice/__dev__/WAService.js:1:488148) at go (http://127.0.0.1:55001/appservice/__dev__/WAService.js:1:741913) at http://127.0.0.1:55001/appservice/__dev__/WAService.js:1:743134
2020-01-06有时候这种场景确实存在,比如当前页面修改完后回到上一个页面想要刷新数据,这个时候一般有两种解决方案: 第一种: 修改上一页的数据 var pages = getCurrentPages(); var prevPage = pages[pages.length - ]; //上一个页面 //直接调用上一个页面对象的setData()方法,把数据存到上一个页面中去 prevPage.setData({ isGoodsList: “这是我要修改的上一页数据” }); 然后再 onShow 去触发 怎么使用的问题 第二种: 利用缓存将数据存储到本地, 然后回到上一页时一样要 借 onShow 去触发
wx.navigateBack的刷新问题wx.navigateBack可以附带参数吗,或者wx.navigateBack以后能不能刷新下页面吗?
2019-12-24