有什么方法可以在使用 JavaScript 创建 Trello 卡片时获取它的 ID?
Is there any way to get the ID of a Trello card upon creating it using JavaScript?
所以,我正在制作一个集成了 Trello 面板的 Discord Bot。我的目标是让机器人添加一张卡片,然后用卡片的 ID 进行响应。我发现 Trello.card.getId()
但它似乎是一种不同的语言,而且 returns getId() 不是函数。
创建函数的完整代码:
Trello.card.create(data).then(function(response){
console.log('Trello card has been added!');
msg.reply('Trello card has been successfully added!');
console.log("Card ID:"+Trello.card.getId())
}).catch(function(error){
console.log('Error: ',error)
});
使用JavaScript。
好不容易找到了!为此,请使用以下内容:
console.log('Trello card has been added!');
msg.reply('Trello card has been successfully added!');
msg.reply(response.id);
console.log(response);
}).catch(function(error){
console.log('Error: ',error)
});
具体来说,注意“msg.reply(response.id);
Response 查找卡片中的所有信息,.id 指定从响应中获取什么。希望这能像帮助我一样帮助其他人。我建议使用 console.log(response)
来查看您在创建卡片时可以获得哪些其他东西。 :)
所以,我正在制作一个集成了 Trello 面板的 Discord Bot。我的目标是让机器人添加一张卡片,然后用卡片的 ID 进行响应。我发现 Trello.card.getId()
但它似乎是一种不同的语言,而且 returns getId() 不是函数。
创建函数的完整代码:
Trello.card.create(data).then(function(response){
console.log('Trello card has been added!');
msg.reply('Trello card has been successfully added!');
console.log("Card ID:"+Trello.card.getId())
}).catch(function(error){
console.log('Error: ',error)
});
使用JavaScript。
好不容易找到了!为此,请使用以下内容:
console.log('Trello card has been added!');
msg.reply('Trello card has been successfully added!');
msg.reply(response.id);
console.log(response);
}).catch(function(error){
console.log('Error: ',error)
});
具体来说,注意“msg.reply(response.id);
Response 查找卡片中的所有信息,.id 指定从响应中获取什么。希望这能像帮助我一样帮助其他人。我建议使用 console.log(response)
来查看您在创建卡片时可以获得哪些其他东西。 :)