怎么样在React中引入图片
通常的方法是
1 <img src="路径"></img>
但是在React中这样会报错
正确的方法应该是
使用require方法
1 <img src={require( “路径”)}></img>