我正在使用create-react-app演示应用程序学习React。我正在尝试编辑它以显示如此的图片:
<img className="media-object" width="75" height="75" src={"./img/initials.jpg"}>
我也尝试过:
<img className="media-object" width="75" height="75" src={require('./img/initials.jpg')}>
但图片未加载。
我可能做错了什么?
答案 0 :(得分:1)
在create-react-app中,you have to store your images in the /public
directory。将您的#include <iostream>
#include <fstream>
int main()
{
string name ;
std::ifstream dataFile("file.txt");
while (!dataFile.fail() && !dataFile.eof() )
{
dataFile >> name ;
cout << name << endl;
}
目录移至/img
,然后您的相对路径应该有效。