Kritika Kajale

Kritika Kajale

  • NA
  • 120
  • 54.5k

SPFX with React framework + pnp js

Jun 26 2019 1:18 AM
I am working on a project in spfx with react framework and I am using pnp js for interacting to sharpoint list/libraries. 
 
I am getting an error in following piece of code.
 
sp.web.getFolderByServerRelativeUrl("doc_lib_internal_name").files.add(file.name, file, true)
.then((f) =>{
console.log(f.file.listItemAllFields);
return f.file.listItemAllFields;
})
.catch((err)=>{
console.log(err);
alert(err);
}); 
 
Error given : Type-error 'Failed To fetch'.
File is getting added to document library but after that control is going to catch block instead of then block.
 
 I am not getting where exactly I am doing wrong. 

Answers (3)