在SPFX Web部件中使用SPHttpClient将文件上传到SharePoint Online

时间:2018-08-31 13:33:52

标签: httpclient sharepoint-online spfx

我正在尝试在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。

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

感谢您的帮助。 谢谢。

1 个答案:

答案 0 :(得分:2)

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

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

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

然后您可以按如下所示注册uploadButton的处理程序:

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

现在,在UploadFiles方法中,您可以添加文件的内容和其他必要的标题。另外,假设您要将文件上传到文档库,则可以使用下面的代码段将文件上传到它。根据您的网站网址和文档库名称进行修改:

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);
    });
  });

}