使用javascript更新谷歌驱动器上的文件内容

时间:2012-08-14 07:18:47

标签: javascript google-drive-api

基于@Nvico很棒answer我能够将文件上传到谷歌驱动器,问题是答案上的代码每次创建一个新文件,是否有一种方法给定已创建的文件ID进行更新它的内容直接(使用Files:update api)而不创建新内容?

目前我的解决方案是使用Files:delete api每次我想更新文件以删除旧文件然后使用@Nvico代码创建新文件

1 个答案:

答案 0 :(得分:3)

您可以使用几乎相同的代码向drive.files.update端点发送更新请求,而不是使用drive.files.insert端点:

/**
 * Update existing file.
 *
 * @param {String} fileId ID of the file to update.
 * @param {Object} fileMetadata existing Drive file's metadata.
 * @param {File} fileData File object to read data from.
 * @param {Function} callback Callback function to call when the request is complete.
 */
function updateFile(fileId, fileMetadata, fileData, callback) {
  const boundary = '-------314159265358979323846';
  const delimiter = "\r\n--" + boundary + "\r\n";
  const close_delim = "\r\n--" + boundary + "--";

  var reader = new FileReader();
  reader.readAsBinaryString(fileData);
  reader.onload = function(e) {
    var contentType = fileData.type || 'application/octect-stream';
    // Updating the metadata is optional and you can instead use the value from drive.files.get.
    var base64Data = btoa(reader.result);
    var multipartRequestBody =
        delimiter +
        'Content-Type: application/json\r\n\r\n' +
        JSON.stringify(fileMetadata) +
        delimiter +
        'Content-Type: ' + contentType + '\r\n' +
        'Content-Transfer-Encoding: base64\r\n' +
        '\r\n' +
        base64Data +
        close_delim;

    var request = gapi.client.request({
        'path': '/upload/drive/v2/files/' + fileId,
        'method': 'PUT',
        'params': {'uploadType': 'multipart', 'alt': 'json'},
        'headers': {
          'Content-Type': 'multipart/mixed; boundary="' + boundary + '"'
        },
        'body': multipartRequestBody});
    if (!callback) {
      callback = function(file) {
        console.log(file)
      };
    }
    request.execute(callback);
  }
}

主要区别在于请求网址和方法:

PUT /upload/drive/v2/files/<FILE_ID>