如何根据位置获取 trello 卡片
How to get a trello card based on position
我正在尝试获取特定列表中的顶级 Trello 卡片,但我不确定如何根据卡片的位置从列表中获取卡片。有任何想法吗?另外,我对 Trello 非常了解 API 我只是完全搞不懂。
目前我已经有了这个,但我不知道如何获得顶卡。
let listID = "5ec3fda8a26c384e44f063bb";
trello.getCardsOnListWithExtraParams(listID, "pos:top",
function(error, trelloCard) {
if (error) {
console.log('An error occured with Trello card.' + error)
message.channel.send({
embed: {
color: 0xff604d,
description: "An error occured! Please try again later or use the support server link."
}
});
} else {
console.log('Found card:', trelloCard);
}
});
当我使用你的代码并将 [0] 添加到它记录的 trelloCard 时,它工作正常并获得列表中的第一个。
trello.getCardsOnListWithExtraParams(listID, "pos:top",
function (error, trelloCard) {
if (error) {
console.log('An error occured with Trello card.' + error)
//testing this in console so I removed the message.channel.send
}
else {
console.log('Found card:', trelloCard[0]);
}
})
输出:
...
name: 'two',
pos: 0.5,
...
哪个是第一个
我正在尝试获取特定列表中的顶级 Trello 卡片,但我不确定如何根据卡片的位置从列表中获取卡片。有任何想法吗?另外,我对 Trello 非常了解 API 我只是完全搞不懂。
目前我已经有了这个,但我不知道如何获得顶卡。
let listID = "5ec3fda8a26c384e44f063bb";
trello.getCardsOnListWithExtraParams(listID, "pos:top",
function(error, trelloCard) {
if (error) {
console.log('An error occured with Trello card.' + error)
message.channel.send({
embed: {
color: 0xff604d,
description: "An error occured! Please try again later or use the support server link."
}
});
} else {
console.log('Found card:', trelloCard);
}
});
当我使用你的代码并将 [0] 添加到它记录的 trelloCard 时,它工作正常并获得列表中的第一个。
trello.getCardsOnListWithExtraParams(listID, "pos:top",
function (error, trelloCard) {
if (error) {
console.log('An error occured with Trello card.' + error)
//testing this in console so I removed the message.channel.send
}
else {
console.log('Found card:', trelloCard[0]);
}
})
输出:
...
name: 'two',
pos: 0.5,
...
哪个是第一个