使用文字内容(javascript)创建新的Google云端硬盘文件

时间:2012-08-14 12:20:25

标签: javascript google-drive-api google-drive-realtime-api

我可以使用javascript Google API验证我的网络应用并在Google云端硬盘中创建新文件,正如in this post所解释的那样:

function createNewFile() {
    gapi.client.load('drive', 'v2', function() {
        var request = gapi.client.request({
            'path': '/drive/v2/files',
            'method': 'POST',
            'body':{
                "title" : "test.txt",
                "description" : "Some"
            }
        });
        request.execute(function(resp) { console.log(resp); });
    });
}

它在云端硬盘中创建一个空文件。但我不知道如何通过向其添加文本内容来创建新的非空文件(例如“blablabla”)。有人可以帮助我吗?

1 个答案:

答案 0 :(得分:2)

检查我在插入How do I add/create/insert files to Google Drive through the API?

后更新文件所做的更新功能

阅读页面上的主要答案,这也提示在一次API调用中创建/插入。