一、引入antd产生的黄色报错
You are using a whole package of antd-mobile, please use https://www.npmjs.com/package/babel-plugin-import to reduce app bundle size.
原因是antd希望按需引入,但以import { TabBar } from "antd-mobile";形式引入时实际上会在底层将所有组件引入,因此会报此错误,目前找不到合适的方法来清除。
二、A string ref,“slider”,has been found within a strict mode tree.String refs are a source of potential bugs
解决:
三、Error while trying to use the following icon from the Manifest: http://localhost:3000/logo192.png (Download error or resource isn't a valid image)
原因是在创建好项目时将没用的图标删除后没有修改对应的配置
四、简单粗暴消除所有log信息
在主界面加载时通过调用console.clear();来将需要被清除的内容清除掉(写在最后被渲染的组件的render中)