插件开发助手报错
在开发者工具里面开发插件,需要一个miniprogram来对插件进行演示
在开发者工具里面我的app.json文件是这样的
{ "pages": [ "pages/index/index", "pages/help/index", "pages/demo/index" ], "window": { "navigationBarTitleText": "日历组件演示" }, "tabBar": { "color": "#dbdbdb", "selectedColor": "#6665ff", "backgroundColor": "#ffffff", "list": [ { "pagePath": "pages/index/index", "text": "功能演示", "iconPath": "/resource/index2.png", "selectedIconPath": "/resource/index.png" }, { "pagePath": "pages/help/index", "text": "接口文档", "iconPath": "/resource/interface2.png", "selectedIconPath": "/resource/interface.png" }, { "pagePath": "pages/demo/index", "text": "Demo", "iconPath": "/resource/layers2.png", "selectedIconPath": "/resource/layers.png" } ] }, "plugins": { "calendar": { "version": "dev", "provider": "这里是小程序APPID,我在这里隐藏掉" } }} |
在左侧模拟器是可以正常显示的,显示如下图
一切正常,没有任何异常输出。
但是点击预览按钮,手机扫码打开插件开发助手,却是一片空白,打开调试,看到输出信息为页面没注册
各个Tab标签页都不行。重启微信,删除插件助手也无法解决。
我不知道这种错误是否会影响到代码上传后的审核工作
烦请相关人员排查,谢谢
