如何使用React Spfx检查SP Online中哪个页面是aspx主页
How to check which page is the aspx homepage in SP Online with React Spfx
如果我在网站集上但主页不是 "Home.aspx",我如何检查它是哪个使用 React SPFX 框架的?
您可以使用 pnp 库来获取欢迎页面。
pnp.sp.web.get().then(web=>{
console.log(web.WelcomPage);
})
这个组合对我有用:
pnp.setup({
spfxContext: this.props.context
});
let welcomePage = await pnp.sp.web.get().then(web=>{
return web.WelcomePage;
})
如果我在网站集上但主页不是 "Home.aspx",我如何检查它是哪个使用 React SPFX 框架的?
您可以使用 pnp 库来获取欢迎页面。
pnp.sp.web.get().then(web=>{
console.log(web.WelcomPage);
})
这个组合对我有用:
pnp.setup({
spfxContext: this.props.context
});
let welcomePage = await pnp.sp.web.get().then(web=>{
return web.WelcomePage;
})