【Taro学习手册(五)—— 遇到的bug】记录一下遇到的bug
- Picker 的选择框不是从底部弹出而是从 AtModal 中弹出
- 在使用Taro-ui时,想用 AtModal 做一个弹窗,但是这里有个需求就是,在这个弹窗中有下拉框的需求,本来想用 Picker 选择器,但是 Picker 无法在 AtModal 中,本来 Picker 的选择器应该是从页面的底部弹出,但是在 AtModal 中用了之后,是在 AtModal 中弹出,看了很多但还是找不到解决方法,最后我只能自己写一个弹窗了
- Some selectors are not allowed in component wxss, including tag name selectors, ID selectors, and attribute selectors.(./pages/founding/founding.wxss:288:3)This wxss file is ignored.
- 这是因为 css 文件中的样式写错,使用rem,改成PX就好了(微信小程序中不能使用px,只能使用PX
- Cannot read property ‘toString’ of undefined
- 有个参数为空,无法使用 toString 转换成字符串
- Uncaught (in promise) {errMsg: “canvasToTempFilePath: fail canvas is empty”}
- Taro.canvasToTempFilePath ({}) 要指定上下文,改成这样就好了 Taro.canvasToTempFilePath ({}, this.$scope)
推荐阅读
- taro的UI库taro ui
- Taro 项目的出错总结
- taro|安装taro 所踩的坑
- Taro@3.3.3最新版本开发企业级出行项目mkw
- Taro|Taro2.x安装依赖后sass配置失效,无法正常使用sass且启动失败