SPFX webpart 引用 html 中的图像
SPFX webpart referencing images in html
我正在使用 SPFX 创建一个简单的 SharePoint Web 部件,我想在解决方案中引用图像。
我使用了这个方法:
require("@microsoft/loader-set-webpack-public-path!");
<img src="${require<string>('../../assets/logo.jpg')}" alt="My Company" />
但是不行。
如何实现?
示例测试演示:
无框架:
<img src="${require<string>('../../download.jpg')}" alt="My Company" />
React 框架:
<img src={require('../../assets/panda.jpg')} alt="test" />
我正在使用 SPFX 创建一个简单的 SharePoint Web 部件,我想在解决方案中引用图像。 我使用了这个方法:
require("@microsoft/loader-set-webpack-public-path!");
<img src="${require<string>('../../assets/logo.jpg')}" alt="My Company" />
但是不行。
如何实现?
示例测试演示:
无框架:
<img src="${require<string>('../../download.jpg')}" alt="My Company" />
React 框架:
<img src={require('../../assets/panda.jpg')} alt="test" />