有人能举例说明如何使用Rally App SDK(在Javascript中)为缺陷添加标签吗?
更新简单字段很简单,但我不清楚如何将对象列表附加到其他对象(例如标签到缺陷)。
...谢谢
答案 0 :(得分:1)
Rally中的任何对象都可以通过其_ref属性进行唯一标识。因此,如果您想在缺陷上设置标记,您可以这样做:
rallyDataSource.update({"_ref":
"https://rally1.rallydev.com/slm/webservice/1.26/defect/12345.js", //defect to update
"Tags": [
{
_ref: "/tag/23456.js" //ref of tag 1
},
{
_ref: "/tag/34567.js" //ref of tag 2
}
]},
onUpdateComplete, onError); //success, error callbacks