We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
微信小程序原生代码未自动转换 在 step by step 地践行将现有原生开发的微信小程序转换成 taro 的过程中, 在 小程序 成功转换编译成 taro 之后,(保证过程中未出现任何报错信息), 依然出现了未将部分原生代码 转换成符合 taro 运行的代码
复现步骤
//app.js App({ ... onLaunch: function(option) { console.log(option.query); }, ... }); // pages/xxx/xxx.js Page({ ... onLoad: function(option) { const {pram1,pram2} = option; console.log(option.query,parm1,parm2); } ... });
//app.js class App extends Taro.Component { ... componentWillMount(option) { console.log(option.query); }, ... } // pages/xxx/xxx.js class _C extends Taro.Component { ... componentWillMount(option) { const {pram1,pram2} = option; console.log(option.query,parm1,parm2); } ... }
期望行为 希望这些不符合 taro 的小程序原生代码,由 taro 自动转换。 例如本次case中,可以自动转成符合 taro 的 this.$router.parmas
报错信息
“Uncaught TypeError: Cannot read property 'query' of undefined”
系统信息 👽 Taro v1.2.13
Taro CLI 1.2.13 environment info: System: OS: Windows 10 Binaries: Node: 10.12.0 Yarn: 1.12.3 npm: 6.4.1
The text was updated successfully, but these errors were encountered:
欢迎提交 Issue~
如果你提交的是 bug 报告,请务必遵循 Issue 模板的规范,尽量用简洁的语言描述你的问题,最好能提供一个稳定简单的复现。🙏🙏🙏
如果你的信息提供过于模糊或不足,或者已经其他 issue 已经存在相关内容,你的 issue 有可能会被关闭。
Good luck and happy coding~
Sorry, something went wrong.
43eb400
yuche
No branches or pull requests
微信小程序原生代码未自动转换
在 step by step 地践行将现有原生开发的微信小程序转换成 taro 的过程中,
在 小程序 成功转换编译成 taro 之后,(保证过程中未出现任何报错信息),
依然出现了未将部分原生代码 转换成符合 taro 运行的代码
复现步骤
期望行为
希望这些不符合 taro 的小程序原生代码,由 taro 自动转换。
例如本次case中,可以自动转成符合 taro 的 this.$router.parmas
报错信息
系统信息
👽 Taro v1.2.13
Taro CLI 1.2.13 environment info:
System:
OS: Windows 10
Binaries:
Node: 10.12.0
Yarn: 1.12.3
npm: 6.4.1
The text was updated successfully, but these errors were encountered: