【报错系列】[system] Do not nest other components in the text component, as there may be

报错系列


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- 总结

这个报错就分享到这里了~

猜你喜欢

转载自blog.csdn.net/qq_59012240/article/details/128104806
今日推荐