-
Notifications
You must be signed in to change notification settings - Fork 4.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
【微信小程序转换】require解析优化 #4126
Comments
欢迎提交 Issue~ 如果你提交的是 bug 报告,请务必遵循 Issue 模板的规范,尽量用简洁的语言描述你的问题,最好能提供一个稳定简单的复现。🙏🙏🙏 如果你的信息提供过于模糊或不足,或者已经其他 issue 已经存在相关内容,你的 issue 有可能会被关闭。 Good luck and happy coding~ |
经过试验,如果在微信小程序的wxml文件中有如下代码: |
现在还不能处理绝对路径,请一直使用相对路径 |
转换程序对图片的动态地址进行了错误的相对路径校验 taro convert 转换过程中会报错: |
问题描述
微信小程序写法如下:
const Moment = require('moment.js') var WxParse = require('components/wxParse/wxParse.js')
(moment.js和wxParse.js都是用户自定义组件,微信编译器可以识别出来)
微信小程序转换为taro代码时require里面的路径被当成npm包安装,导致从转换后的taro代码转回微信小程序代码时报错。
复现步骤
[复现问题的步骤]
2.打开taroconvert目录,执行yarn
3.执行yarn build:weapp
期望行为
taro代码成功转换为微信小程序代码
报错信息
系统信息
补充信息
taro解析这类变量声明时,因为require里面既不是相对路径也不是相对路径,所以当成npm包进行安装,自然就会转换报错。
解决方案:提取require中非正常路径,识别在src目录下是否存在,若存在则加入到config目录的alias中或者将非正常路径修改为相对路径。
方法1(推荐):非正常路径修改为相对路径
var WxParse = require('./components/wxParse/wxParse.js')
方法2:加入到config目录的index.js中,加入到alias中。
alias: { 'components': path.resolve(__dirname, '..', 'src/components') }
The text was updated successfully, but these errors were encountered: