pnp-js-损坏的文件

时间:2018-07-27 16:07:24

标签: sharepoint

我正在尝试从sharepoint下载文件,但它不起作用!

我收到损坏的文件...

我正在使用github的Files示例。 https://github.com/pnp/pnpjs/blob/dev/packages/sp/docs/files.md

这是我尝试过的线

this.web.getFileByServerRelativeUrl("/sites/dev/documents/my-image-file.bmp")
    .getBlob().then((blob: Blob) => {
        console.log(blob);

        // code to download  file here with FileSaver
    }
);

这是console.log结果:

Blob(6350695) {size: 6350695, type: "application/json"}

我不明白为什么应为位图图像类型的类型为application / json。

如果我直接在sharepoint中单击文件,一切正常...所以我认为上传是可以的。

我在做什么错了?

0 个答案:

没有答案