Google Drive API JavaScript - 插入文件

Google Drive API JavaScript - Insert file(Google Drive API JavaScript - 插入文件)
本文介绍了Google Drive API JavaScript - 插入文件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

我正在尝试插入"一个云端硬盘文件.我已经进行了身份验证,它工作正常:)

I'm trying to "insert" a Drive file. I've made the auth and it works right :)

但是当我尝试从 JS 创建(插入)一个新文件时,它会创建一个名为Untitled"的文件,根本没有扩展名.(我的文件系统上有一个同步文件夹,也是一样的).

But when I try to create (insert) a new file from JS, it creates one, but a file named "Untitled" with no extension at all. (I have a sync folder on my file system, and it is the same thing).

我的代码是这样的:

 function createNewFile(  ) {
    gapi.client.load('drive', 'v2', function() {
    var request = gapi.client.drive.files.insert ( {
        "title" : "cat.jpg",
        "mimeType" : "image/jpeg",
        "description" : "Some"
        } );
    request.execute(function(resp) { console.log(resp); });
    });
 }

知道什么是错的吗?我可以从 JS 的驱动器中列出文件,这段代码创建了这个无标题"并且没有扩展文件.

Any idea about what is wrong? I can list files from my drive from JS, and this code creates this "untitled" and no extensioned file.

推荐答案

我有这样的工作:

function createNewFile(  ) {

    gapi.client.load('drive', 'v2', function() {

       var request = gapi.client.request({
        'path': '/drive/v2/files',
        'method': 'POST',
        'body':{
            "title" : "cat.jpg",
            "mimeType" : "image/jpeg",
            "description" : "Some"
         }
     });

      request.execute(function(resp) { console.log(resp); });
   });
}

请注意,如果标题为 cat.jpg 的文件已存在,则此请求将创建另一个具有相同标题的文件,因为 Google 云端硬盘中的文件具有唯一的文件 ID,内部引用这些文件 ID.

Bear in mind that if a file with title cat.jpg already exists, this request will create another file with the same title, since files in Google Drive have unique file IDs by which are referred internally.

这篇关于Google Drive API JavaScript - 插入文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

opening html from google drive(从谷歌驱动器打开 html)
Google apps script get range of bytes from binary file(谷歌应用程序脚本从二进制文件中获取字节范围)
Sending Multiple attachments with Google Script from Google Drive(使用 Google 脚本从 Google Drive 发送多个附件)
Distributing Google Apps Scripts for Sheets in your company network(在您的公司网络中分发适用于表格的 Google Apps 脚本)
Upload file to my google drive from anyone using javascript(使用 javascript 将文件从任何人上传到我的谷歌驱动器)
quot;Shared Drivequot; support in Google Apps Script(“共享驱动器Google Apps 脚本中的支持)