清除React项目运行时控制台无用的警告

一、引入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

清除React项目运行时控制台无用的警告

解决: 

清除React项目运行时控制台无用的警告

 三、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)

清除React项目运行时控制台无用的警告

原因是在创建好项目时将没用的图标删除后没有修改对应的配置

清除React项目运行时控制台无用的警告

 四、简单粗暴消除所有log信息

在主界面加载时通过调用console.clear();来将需要被清除的内容清除掉(写在最后被渲染的组件的render中)

上一篇:nuxtjs——全局方法组件等挂载


下一篇:【async-validator】 在antd组件中使用案例