- 小程序快速更新没有通知?无法发布?
小程序快速更新没有通知?无法发布?
2021-03-09 - 添加卡券页面出现参数错误?
[图片] const timestamp = Math.floor(Date.now() / 1000) const nonceStr = randomString() const { apiSignature } = await getApiTicket({ noncestr: nonceStr, timeStamp: timestamp, url: location.href.split('#')[0], cardId }) console.log('addCard', cardId) const cardExt = { timestamp, nonce_str: nonceStr, signature: apiSignature, outer_str: JSON.stringify({ ...outer, deviceId, openStyleType, subActivityWay }) } console.log('addCard', cardExt) return new Promise((resolve, reject) => { wx.addCard({ cardList: [{ cardId, cardExt: JSON.stringify(cardExt) }], // 需要添加的卡券列表 success: function (res) { resolve(res.cardList) console.log('addCard', res) } }) })
2021-01-07 - wx.miniProgram.navigateTo 通过eventChannel无法获取数据?
webview中的H5 wx.miniProgram.navigateTo({ url: `/pages/a/index`, success: function (res) { // 通过eventChannel向被打开页面传送数据 res.eventChannel.emit('acceptDataFromOpenerPage', { wxAppPath: '/pages/index/index', wxAppId: 'wxd62ee74e64a843aa' }) } }) 小程序 onLoad() { const eventChannel = this.getOpenerEventChannel() // eventChannel 对象存在 eventChannel.on && eventChannel.on('acceptDataFromOpenerPage', ( data = {} ) => { // 这里未触发 console.log(data) }) }
2020-12-16 - 你好,是否有开源积木的代码,或者我们如何提供自己的插件?
谢谢
2020-11-17