如何将文件移动到 javascript 驱动器 api v3 中的回收站?

how to move file to trash in drive api v3 in javascript?

我想使用gapi js SDK 客户端删除一个文件。但我找不到一个有效的例子。我不知道将 trashed 属性放在调用中的什么地方

gapi.client.drive.files.update({fileId: 'someId', trashed: true}); 不工作。

我的工作代码是:

var id = "someId";
gapi.client.drive.files.update({
                "fileId": id,
                "trashed": true
}).then(function (evt) {
  //someAction after delete file
});

此致。

以上示例对我不起作用,但我发现 可以:

gapi.client.drive.files.update({
  fileId: 'someId',
  responseBody: {
    trashed: true
  }
});