- 真机调试出现U.createEvent is not a function?
[图片] 2021/04/28 14:11 再次搜索该问题,发现与我同样头痛的人还真多。 现在我告诉大家,我还没有解决啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊 FK 他老母
2021-04-28 - 真机调试MiniProgramError U.createEvent is not function
昨天调试还正常,今天出现MiniProgramError U.createEvent is not function错误 [图片]
2021-04-09 - wepy开发插件
wepy开发小程序插件,miniprogram内使用原生,plugin功能使用wepy,报错如下:[图片] 插件配置( 编译后路径 /plugin/plugin.json ): { "publicComponents": { "promotionindex": "pages/promotions/promotion" }, "main": "index.js" }插件代码 ( 编译后路径 /plugin/pages/promotions/promotion ):[图片] 小程序配置插件(编译后路径 /miniprogram/app.json): { "pages": [ "pages/index/index" ], "plugins": { "myPlugin": { "version": "dev", "provider": "xxxxxxxxxxxxxxxxxxx" } } }模块调用插件配置( 编译后路径 /miniprogram/pages/index/index.json): { "usingComponents": { "promotion": "plugin://myPlugin/promotionindex" } } project.config.json: { "description": "A WePY project", "setting": { "urlCheck": true, "es6": false, "postcss": false, "minified": false, "newFeature": true }, "compileType": "plugin", "appid": "xxxxxxxxxxxxxx", "projectname": "mpp-plugin", "miniprogramRoot": "./miniprogram", "pluginRoot": "./plugin", "condition": {} }
2018-06-29