在 SharePoint 框架 WebPart 中引用图像
Referencing Images in a SharePoint Framework WebPart
我正在尝试创建一个包含图像的简单 SharePoint Online WebPart。
问题是未显示打包在 WebPart 中的图像。
我找到了这个解决方案:
https://mattjimison.com/2017/06/03/referencing-images-sharepoint-framework-webpart/
但问题是当我这样做时出现错误 gulp serve
:
[10:19:10] Finished subtask 'post-copy' after 4.25 ms
[10:19:10] Starting subtask 'collectLocalizedResources'...
Request: '/node_modules/@microsoft/sp-page-context/dist/sp-page-context.js'
[10:19:10] Finished subtask 'collectLocalizedResources' after 26 ms
[10:19:10] Starting subtask 'configure-webpack'...
[10:19:11] Finished subtask 'configure-webpack' after 561 ms
[10:19:11] Starting subtask 'webpack'...
Request: '/node_modules/@microsoft/sp-component-base/dist/sp-component-base.js'
Request: '/node_modules/@microsoft/sp-extension-base/dist/sp-extension-base_en-us.js'
Request: '/node_modules/@microsoft/sp-application-base/dist/sp-application-base_en-us.js'
Request: '/node_modules/react/dist/react.js'
Request: '/node_modules/react-dom/dist/react-dom.js'
[10:19:11] Error - [webpack] 'dist':
./lib/webparts/socialLinks/SocialLinksWebPart.js
Module not found: Error: Can't resolve 'set-webpack-public-path' in 'c:\runemy\git\spfx-social-links\lib\webparts\socialLinks'
resolve 'set-webpack-public-path' in 'c:\runemy\git\spfx-social-links\lib\webparts\socialLinks'
Parsed request is a module
using description file: c:\runemy\git\spfx-social-links\package.json (relative path: ./lib/webparts/socialLinks)
after using description file: c:\runemy\git\spfx-social-links\package.json (relative path: ./lib/webparts/socialLinks)
resolve as module
c:\runemy\git\spfx-social-links\lib\webparts\socialLinks\node_modules doesn't exist or is not a directory
c:\runemy\git\spfx-social-links\lib\webparts\node_modules doesn't exist or is not a directory
c:\runemy\git\spfx-social-links\lib\node_modules doesn't exist or is not a directory
c:\runemy\git\node_modules doesn't exist or is not a directory
c:\runemy\node_modules doesn't exist or is not a directory
looking for modules in c:\runemy\git\spfx-social-links\node_modules
using description file: c:\runemy\git\spfx-social-links\package.json (relative path: ./node_modules)
好像是少了一个模块?我怎样才能得到这个 运行?
结案
案件已解决:
npm install @microsoft/loader-set-webpack-public-path
npm install @microsoft/set-webpack-public-path-plugin --save-dev
并将 require('set-webpack-public-path!')
替换为 require("@microsoft/loader-set-webpack-public-path!");
-符文
我正在尝试创建一个包含图像的简单 SharePoint Online WebPart。 问题是未显示打包在 WebPart 中的图像。
我找到了这个解决方案: https://mattjimison.com/2017/06/03/referencing-images-sharepoint-framework-webpart/
但问题是当我这样做时出现错误 gulp serve
:
[10:19:10] Finished subtask 'post-copy' after 4.25 ms
[10:19:10] Starting subtask 'collectLocalizedResources'...
Request: '/node_modules/@microsoft/sp-page-context/dist/sp-page-context.js'
[10:19:10] Finished subtask 'collectLocalizedResources' after 26 ms
[10:19:10] Starting subtask 'configure-webpack'...
[10:19:11] Finished subtask 'configure-webpack' after 561 ms
[10:19:11] Starting subtask 'webpack'...
Request: '/node_modules/@microsoft/sp-component-base/dist/sp-component-base.js'
Request: '/node_modules/@microsoft/sp-extension-base/dist/sp-extension-base_en-us.js'
Request: '/node_modules/@microsoft/sp-application-base/dist/sp-application-base_en-us.js'
Request: '/node_modules/react/dist/react.js'
Request: '/node_modules/react-dom/dist/react-dom.js'
[10:19:11] Error - [webpack] 'dist':
./lib/webparts/socialLinks/SocialLinksWebPart.js
Module not found: Error: Can't resolve 'set-webpack-public-path' in 'c:\runemy\git\spfx-social-links\lib\webparts\socialLinks'
resolve 'set-webpack-public-path' in 'c:\runemy\git\spfx-social-links\lib\webparts\socialLinks'
Parsed request is a module
using description file: c:\runemy\git\spfx-social-links\package.json (relative path: ./lib/webparts/socialLinks)
after using description file: c:\runemy\git\spfx-social-links\package.json (relative path: ./lib/webparts/socialLinks)
resolve as module
c:\runemy\git\spfx-social-links\lib\webparts\socialLinks\node_modules doesn't exist or is not a directory
c:\runemy\git\spfx-social-links\lib\webparts\node_modules doesn't exist or is not a directory
c:\runemy\git\spfx-social-links\lib\node_modules doesn't exist or is not a directory
c:\runemy\git\node_modules doesn't exist or is not a directory
c:\runemy\node_modules doesn't exist or is not a directory
looking for modules in c:\runemy\git\spfx-social-links\node_modules
using description file: c:\runemy\git\spfx-social-links\package.json (relative path: ./node_modules)
好像是少了一个模块?我怎样才能得到这个 运行?
结案
案件已解决:
npm install @microsoft/loader-set-webpack-public-path
npm install @microsoft/set-webpack-public-path-plugin --save-dev
并将 require('set-webpack-public-path!')
替换为 require("@microsoft/loader-set-webpack-public-path!");
-符文