是否有可能写文本文件然后上传到Google Drive进行响应?

时间:2019-04-23 23:23:47

标签: javascript reactjs google-picker

我正在尝试将字符串写入文本文件,然后上传到Google驱动器 是否可以通过javascript或使用react-google-picker?

这是我的代码,用于将文件下载到本地存储...

    Download= () => {
        var _this = this;
        const element = document.createElement("a");
        const file = new Blob([_this.state.xmldata], { type: 'text/plain' });
        element.href = URL.createObjectURL(file);
        element.download = "text.txt";
        document.body.appendChild(element);
        element.click();
    }

谢谢

1 个答案:

答案 0 :(得分:0)

我相信您要查找的是Google驱动器是否具有可以创建文件的api。这并不是特定的反应。

我相信您会发现第3个链接最有用。本质上,您只需要使用身份验证将文件发布到他们的rest api:

POST https://www.googleapis.com/upload/drive/v3/files

以下是完整的API文档:https://developers.google.com/drive/api/v3/reference/