Question

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?

Était-ce utile?

La solution

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); })
Licencié sous: CC-BY-SA avec attribution
Non affilié à sharepoint.stackexchange
scroll top