随笔分类 -  React

摘要:es6不支持在<img />标签内直接写图片的路径,即: <img src="../../static/banner.png"/> (1)import 方法: import imgURL from '../../static/banner.png';<img src={imgURL } /> (2) 阅读全文
posted @ 2019-02-03 22:13 拾暮 阅读(999) 评论(1) 推荐(0)
摘要:在package.json中配置 然后出现 解决方案: 在package.json中查看react-scripts的版本号 ,版本太高了不支持,把node_modules/react-scripts删除了 重新安装 npm i react-scripts@1.1.1 阅读全文
posted @ 2019-01-31 21:35 拾暮 阅读(1695) 评论(0) 推荐(0)