1. React はオブジェクトから画像を取得できませんでした
2. 関連するコードは次のとおりです:
for(varindex =0;index<newsInfo.length;index ){
let aa = newsInfo[index];
.... . ......
..........
....................
<img src={aa.newsImg} width="120 " height="100"/>
}
3. オブジェクトは走査されました。上記のメソッドは利用できません。<img src={require(aa.newaImg)}> をロードできません。ください。見てください、意見をください
天蓬老师2017-06-28 09:26:57
let imgs=newsInfo.map((aa,i)=> <img src={aa.newsImg} width="120" height="100"/>)