Trello如何在特定列表中找到所有“已存档”的卡?


16

我想从给定列表中找到所有“已存档”卡。我可以使用该网站或使用Trello API。

Answers:




1

可以使用API​​。看这里:

https://trello.com/docs/api/list/index.html

例如,在Trello开发板上:

curl https://api.trello.com/1/lists/4d5ea62fd76aa1136000001d?cards=closed&card_fields=name

(查看HTTPie获得更好的体验)

要获取列表的ID,请使用API​​或以可怜的人的方式进行操作:在JS控制台中输入以下内容并打开相关面板:

_.map(ModelCache._cache.List, function(value, key) { return {id: key, name: value.get('name')}; })[0]

这仅适用于Trello开发委员会是公开的。要从专用板获取数据,请按照此处的说明进行操作:

https://trello.com/docs/gettingstarted/index.html

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.