gpt4 book ai didi

javascript - 从 Google Drive API 结果中排除特定的 mimeType

转载 作者:行者123 更新时间:2023-12-03 09:52:30 26 4
gpt4 key购买 nike

我正在使用 hello.js 并通过 javascript 检索用户文件列表,但我希望能够从发回的结果中排除特定的 mimetypes。

https://www.googleapis.com/drive/v2/files?q=%22root%22+in+parents+and+trashed=false&maxResults=100&access_token=<access_token>

是否可以添加查询参数来排除 map 等结果?

最佳答案

在以下示例中,mimeType“image/png”被排除。

function getImages() {
var gl = hello('google');
gl.login({scope:'files'}).then(function(){

// Make request for files add the proprietary parameter 'q'
// See https://developers.google.com/drive/web/search-parameters for more.
return gl.api("me/files", {q:"mimeType != 'image/'"});
}).then(log.bind(null,'.demo2'),log.bind(null,'.demo2'));
}

关于javascript - 从 Google Drive API 结果中排除特定的 mimeType,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30849780/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com