Frage

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?

War es hilfreich?

Lösung

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); })
Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit sharepoint.stackexchange
scroll top