I want to get current user login name with PnP-Core-Library for SPFx in Office365.

My page is modern Page аnd I can not use it _spContextPageInfo

How to do this?

有帮助吗?

解决方案

you can use it by doing the following

import  Web  from 'sp-pnp-js';

let web = new Web(this.context.pageContext.site.absoluteUrl);
let curruser = web.currentUser.get().then(function(res){ 
console.log(res.Title); })
许可以下: CC-BY-SA归因
scroll top