SPFX WebPart引用HTML中的图像

时间:2019-11-21 12:48:06

标签: html sharepoint spfx

我正在使用SPFX创建一个简单的SharePoint Webpart,我想在解决方案中引用图像。 我使用了这种方法:

require("@microsoft/loader-set-webpack-public-path!");

<img src="${require<string>('../../assets/logo.jpg')}" alt="My Company" />

但这不起作用。

如何实现?

1 个答案:

答案 0 :(得分:1)

示例测试演示:

没有框架:

<img src="${require<string>('../../download.jpg')}" alt="My Company" />

enter image description here

反应框架:

enter image description here

<img src={require('../../assets/panda.jpg')} alt="test" />