1

有没有办法获取当前使用上电的板的当前 ID?

像这样的东西在我的client.js

var Promise = TrelloPowerUp.Promise;

TrelloPowerUp.initialize({
    // Start adding handlers for your capabilities here!
  'current-board': function(t, options){
    console.log(boardId) // I want to get the board's Id
  },

    'card-buttons': function(t, options) {
    return t.set("member", "shared", "hello", "world")
    .then(function(){
        return [{
        icon: BLACK_ROCKET_ICON,
              text: 'Estimate Size',
              callback: function(t) {
                return t.popup({
                  title: "Estimation",
                  url: 'estimate.html',
                });
              }
            }];
    })
    },
});

当上电初始化时,我想控制台记录board Id.

4

1 回答 1

1

以下代码可在您的 client.js 文件中用于获取板 id 或名称等。

TrelloPowerUp.initialize({
    'current-board': function(t, options){
    t.board('id')
        .then(function (name) {
            console.log(name);
    });
});

上面的代码t.board('name')也适用于像t.card('name').

于 2020-11-22T06:58:42.050 回答