- 小程序接入标准交易组件,哪里能获得标准交易组件源码或者哪里能看到更详细的接口说明?
现有先程序想引入标准交易组件, 期望只有授权用户才能访问交易页面。 所以希望能查看标准交易组件的接口说明,看看能否实现此功能。 查看了https://developers.weixin.qq.com/doc/ministore/minishopopencomponent/Introduction.html文档, 里面只能看到下面两个接口,还有其他接口不,比如用户权限的检查函数? const miniShopPlugin = requirePlugin('mini-shop-plugin'); miniShopPlugin.initHomePath('your home page path'); // 比如'/pages/index/index' const miniShopPlugin = requirePlugin('mini-shop-plugin'); App({ onLaunch() { miniShopPlugin.initApp(this, wx); }, });
2021-05-22 - 小程序接入标准交易组件,为什么没有商品列表组件?怎么获得商品列表?
标准交易组件api文档https://developers.weixin.qq.com/miniprogram/dev/framework/ministore/minishopopencomponent/API/n_introduct.html 只提到了下面这些组件,为什么没有商品列表组件? 需要自己通过接口(https://developers.weixin.qq.com/miniprogram/dev/framework/ministore/minishopopencomponent/API/spu/get_spu_list.html)来获得商品列表,然后自己编写商品列表组件来展示吗? 为什么官方不提供商品列表组件? [图片]
2021-05-22 - 插屏广告,destroy报错。
let interstitialAd = null; onShow: function () { this.initAd(); }, initAd: function () { // 在页面onLoad回调事件中创建插屏广告实例 if (wx.createInterstitialAd) { interstitialAd = wx.createInterstitialAd({ adUnitId: 'adunit-6772165b94d49af2' }) interstitialAd.onLoad(() => { console.log("load interstitialAd successfully ") }) interstitialAd.onError((err) => { }) interstitialAd.onClose(() => { }) } }, onHide: function () { if(interstitialAd){ interstitialAd.destroy(); } }, 代码如上,在show函数中创建插屏广告,在onhide中摧毁这个插屏广告。 在本机调试没有问题。 但是用户报下面的错误。 a.destroy is not a function. (In 'a.destroy()', 'a.destroy' is undefined);at "pages/index/index" page lifeCycleMethod onHide function onHide@https://pages/index/index.js:160:22 https://lib/WAService.js:1:1004738 https://lib/WAService.js:1:1004497 https://lib/WAService.js:1:1006233 https://lib/WAService.js:1:238108 emitInternal@https://lib/WAService.js:1:362485 https://lib/WAService.js:1:571146 https://lib/WAService.js:1:238108 emit@https://lib/WAService.js:1:362197 https://lib/WAService.js:1:368353 https://lib/WAService.js:1:238207 emit@https://lib/WAService.js:1:362197 https://lib/WAService.js:1:363391 https://lib/WAService.js:1:252407 m@https://lib/WAService.js:1:1720
2020-11-10