- app.绑定require,page里app.require引入失败?
Windows 10 专业版20H2 ,微信开发者工具Stable1.05.2201240 , 调试库2.22.0 在App绑定require,Page里获取app,直接app.require引入报错 [图片][图片] 设置路径path变量为'.utils/util'时 会报错 Error:module "utils/util.js"is not defined [图片][图片] 将路径写死为'.utils/util'时 代码运行正常 [图片] //util.js module.exports = { testFunc(value) { return `testFunc${value}`; }, }; //app.js App({ onLaunch: function () {}, require(path) { return require(`${path}`); //return require("./utils/util"); }, }); //demo.js const { testFunc } = getApp().require("./utils/util"); Page({ onLoad() { const str = testFunc(1); console.log(str); this.setData({ str, }); }, });
2022-01-27 - 开发者工具复制不了内容
开发这工具有时候复制不了内容,要全部关闭重新打开才可以。 还有的时候 Ctrl+F 搜索内容,输入框输入不了
2018-08-14