// /utils/a.wxs
var foo = "'hello world' from tools.wxs";
module.exports = {
foo: foo,
};
// packageA/index/b.wxs
var a = require("../a.wxs");
console.log(a.foo);
<!-- /packageA/index/index.wxml -->
<wxs src="./b.wxs" module="b" />
分包里的页面中b.wxs文件引入主包中共用的a.wxs,在手机上报错,提示“Cannot read property 'foo' of undefined"
开发工具中正常,用真机调试,开发工具也不会报错,只有在手机上的控制台才会显示报错。
分包wxs不支持引入分包外的wxs吗?这个算bug吗?
现在验证发现官方已经修复了这个问题,赞👍
已知问题,我们后续版本处理下