摘要:
官方文档:https://developers.weixin.qq.com/miniprogram/dev/api/storage/wx.setStorageSync.html 存到本地就是存到手机的意思 1.wx.setStorageSync(string key,any data)(同步) 参数 阅读全文
摘要:
官方文档:https://developers.weixin.qq.com/miniprogram/dev/api/route/wx.switchTab.html 1.wx.switchTab(Object.object) 只能跳转到tabBar页面,并关闭其他所有非tabBar页面(注意:这里的t 阅读全文
摘要:
wx.request 1.wx.request相当于ajax请求,和django后台进行交互 官方文档:https://developers.weixin.qq.com/miniprogram/dev/api/network/request/wx.request.html 参数 Object obj 阅读全文
摘要:
事件 常见事件: test.wxml <!-- 事件--> <button bind:tap="click" data-name="{{b}}" data-age="sb">按钮</button> #bind:事件名="事件函数名" <view class="outer" bind:tap="cli 阅读全文