如何将文件移动到JavaScript中的驱动器API v3中的垃圾?

时间:2019-07-01 17:29:35

标签: javascript google-drive-api drive gapi recycle-bin

我想使用gapi js SDK客户端删除文件。但是我找不到一个可行的例子。我不知道将垃圾属性放置在通话中的位置

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

2 个答案:

答案 0 :(得分:1)

我的工作代码是:

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

致谢。

答案 1 :(得分:0)

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

SUBSTR(ColumnA, -1, 1)