没办法解决么,现在无法预览,体验版也白板,估计只能回退了
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-03-242022年了不修了?
scroll-view包含的自定义组件中fixed元素层级问题?[图片]右侧是一个scroll-view,里面的自定义组件中包含一个fixed弹框,但这个弹框无论怎么设置层级,只能显示在当前scroll-view的有效宽度内。安卓、开发工具都正常。ios不行、
2022-01-28