获取 Trello 中所有卡片的所有清单

Get all checklists for all cards in Trello

是否可以在一个 API 请求中获取我作为会员的每张卡中的每个清单。 理想情况下,我想使用以下路径:

Trello.get('members/me/cards/all/checklists', function(checklist) { ... });

是否可以在一个请求中完成?

怎么样https://trello.com/1/members/me/cards?checklists=all&fields=none

我使用 fields=none 使清单更容易在视觉上看到,但如果您还想要卡片中的其他数据,您当然可以更改它。

我根据 https://trello.com/docs/api/member/index.html#get-1-members-idmember-or-username-cards

上的文档构建了这个 URL