将自定义 属性 添加到 Trello 卡片
Add a custom property to Trello Card
我正在尝试向 Trello 卡片添加自定义 属性。目的是让我的应用程序可以向 Trello 卡片添加额外数据(即 'dollar value' 或 'duration')。
我考虑过替代方案,但认为它们不是最适合需要的。
1 - 卡片标签:它适用于类别,但不可取,因为它会给用户已经使用的标签添加混乱。此外,标签不适用于非分类数据。
2 - 向卡片添加评论:是的,这是可能的,但感觉很黑,如果用户不小心删除了评论,它会影响我的应用程序的工作方式。
对我来说最大的问题是我没有看到任何说明它是否可以完成的信息。在 blog post from Trello 中提到了类似的东西。这是直接引用的内容。
Q: Is there a way to generate story points to use with my Agile team?
A: Kind of. I guess story points are an estimate of how long something will take to do. This falls into the idea of a custom property for a card that you’d like to have meaning. For example, if your Trello board was a Sales Leads board, you might want all your cards to have potential deal size $$$ on them. Right now we don’t want to cram Trello into any specific use, so something like this would have to be provided by a custom plugin (see the API question).
post 被标记为已过时,但我在 API 文档或其他任何地方都看不到它仍然是一个梦想或该功能可用的任何内容。非常感谢任何帮助。
最后,不要认为这会影响这个问题,但我正在使用 node-trello 访问 API。
为此,我使用了附件 API(增强库)。
您可以将信息存储为 URL(1024 个字符长)并根据需要将它们显示给用户。
我认为,要存储更多数据,您需要存储在其他地方并使用卡 ID 或附件 URL 作为访问该数据的密钥。
我正在尝试向 Trello 卡片添加自定义 属性。目的是让我的应用程序可以向 Trello 卡片添加额外数据(即 'dollar value' 或 'duration')。
我考虑过替代方案,但认为它们不是最适合需要的。 1 - 卡片标签:它适用于类别,但不可取,因为它会给用户已经使用的标签添加混乱。此外,标签不适用于非分类数据。 2 - 向卡片添加评论:是的,这是可能的,但感觉很黑,如果用户不小心删除了评论,它会影响我的应用程序的工作方式。
对我来说最大的问题是我没有看到任何说明它是否可以完成的信息。在 blog post from Trello 中提到了类似的东西。这是直接引用的内容。
Q: Is there a way to generate story points to use with my Agile team?
A: Kind of. I guess story points are an estimate of how long something will take to do. This falls into the idea of a custom property for a card that you’d like to have meaning. For example, if your Trello board was a Sales Leads board, you might want all your cards to have potential deal size $$$ on them. Right now we don’t want to cram Trello into any specific use, so something like this would have to be provided by a custom plugin (see the API question).
post 被标记为已过时,但我在 API 文档或其他任何地方都看不到它仍然是一个梦想或该功能可用的任何内容。非常感谢任何帮助。
最后,不要认为这会影响这个问题,但我正在使用 node-trello 访问 API。
为此,我使用了附件 API(增强库)。 您可以将信息存储为 URL(1024 个字符长)并根据需要将它们显示给用户。 我认为,要存储更多数据,您需要存储在其他地方并使用卡 ID 或附件 URL 作为访问该数据的密钥。