在React Native应用程序中使用img标签的相对路径

时间:2018-09-09 07:07:18

标签: android react-native

在React native中,是否可以通过img src传递相对路径来在Web视图中加载图像?即:

  import NoImage from '../../assets/no_image.png';
  const imgPath = '../../assets/no_image.png';// or NoImage
  const htmlContent = "<img src = \""+ imgPath +"\" id=\"image\" width=\"100%\"/>";

然后通过响应本机Web视图加载此htmlContent。但是不幸的是,该图片未显示。

注意:只有在我使用任何网址链接时,图像才会加载。

预先感谢

0 个答案:

没有答案