从Google云端硬盘API结果中排除特定的mimeType

时间:2015-06-15 16:01:21

标签: javascript api google-drive-api hello.js

我使用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>

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

1 个答案:

答案 0 :(得分:1)

在以下示例中,排除了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'));
}