在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。但是不幸的是,该图片未显示。
注意:只有在我使用任何网址链接时,图像才会加载。
预先感谢