在 spfx webpart 中使用 SPHttpClient 将文件上传到 SharePoint Online

Upload files to SharePoint Online using SPHttpClient in an spfx webpart

我正在尝试在 spfx webpart 中使用 SPHttpClient 上传文件。

我正在尝试的代码是

const spOpts:ISPHttpClientOptions={body: { my: "bodyJson" } };

contextDetails.spHttpClient.post(url,SPHttpClient.configurations.v1, spOpts) 
       .then(response => { 
          return response; 
        }) 
      .then(json => { 
        return json; 
      }) as Promise<any>

但我不确定如何将文件内容添加到此 httpClient API。

我想我们必须将文件内容添加到正文参数中的 spOpts。不过我不确定。

感谢任何帮助。 谢谢

假设您正在使用并输入如下文件标签:

<input type="file" id="uploadFile" value="Upload File" />

<input type="button" class="uploadButton" value="Upload" />

然后您可以按如下方式注册上传按钮的处理程序:

private setButtonsEventHandlers(): void {    
    this.domElement.getElementsByClassName('uploadButton')[0].
    addEventListener('click', () => { this.UploadFiles(); });
}

现在,在 UploadFiles 方法中,您可以添加文件的内容和其他必要的 headers。此外,假设您要将文件上传到文档库,您可以使用下面的代码片段将文件上传到它。根据您的站点 url 和文档库名称修改它:

var files = (<HTMLInputElement>document.getElementById('uploadFile')).files;
//in case of multiple files,iterate or else upload the first file.
var file = files[0];
if (file != undefined || file != null) {
  let spOpts : ISPHttpClientOptions  = {
    headers: {
      "Accept": "application/json",
      "Content-Type": "application/json"
    },
    body: file        
  };

  var url = `https://<your-site-url>/_api/Web/Lists/getByTitle('Documents')/RootFolder/Files/Add(url='${file.name}', overwrite=true)`

  this.context.spHttpClient.post(url, SPHttpClient.configurations.v1, spOpts).then((response: SPHttpClientResponse) => {

    console.log(`Status code: ${response.status}`);
    console.log(`Status text: ${response.statusText}`);

    response.json().then((responseJSON: JSON) => {
      console.log(responseJSON);
    });
  });

}