Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如果我在网站集上并且主页不是“Home.aspx”,我如何使用 React SPFX 框架检查它是哪一个?
您可以使用 pnp 库来获取欢迎页面。
pnp.sp.web.get().then(web=>{ console.log(web.WelcomPage); })
https://docs.microsoft.com/en-us/sharepoint/dev/spfx/web-parts/guidance/use-sp-pnp-js-with-spfx-web-parts
这种组合对我有用:
pnp.setup({ spfxContext: this.props.context }); let welcomePage = await pnp.sp.web.get().then(web=>{ return web.WelcomePage; })