ReactJS从项目外部的文件系统加载图像

时间:2017-08-11 00:08:05

标签: html image reactjs filesystems

我有一个应用程序,我在数据库中存储图像路径。路径相对于我的文件系统,而不是项目。

当我在React中发布时:

<img alt={this.props.alt} src={require('/fs/storage/images/logo.jpg')}/>

我收到以下错误:

You attempted to import /fs/storage/images/logo.jpg which falls outside of the project
src/ directory. Relative imports outside of src/ are not supported. 
You can either move it inside src/, or add a symlink to it from project's node_modules.

我该如何解决?我应该在哪里放置消息所暗示的符号链接?

1 个答案:

答案 0 :(得分:0)

如果客户端如何读取文件系统或数据库的反应? 你有服务器吗?那与数据库沟通?

您应该在服务器上阅读图像并在客户端上发送,在React中使用它