报错系列
1- 查看报什么错
写uni-app项目时,看到控制台打印了一串黄色的警告信:
[system] Do not nest other components in the text component, as there may be display differences on different platforms.
- 如图所示
2- 为什么会报错
报黄原因:在text
里面嵌套了别的组件
<text class="countdown">
<uni-countdown :show-day="false" :hour="12" :minute="12" :second="12" color="#FFFFFF" background-color="#e8382f" splitorColor="#e8382f"/>
</text>
3- 解决报错
看到上述代码,只需要把 text
改成 view
,再重新刷新就没有了
<view class="countdown">
<uni-countdown :show-day="false" :hour="12" :minute="12" :second="12" color="#FFFFFF" background-color="#e8382f" splitorColor="#e8382f"/>
</view>
4- 总结
这个报错就分享到这里了~