1

我正在编写和展示 Rally 之外的 Rally 应用程序。有谁知道使用 Rally SDK 1.33 动态确定项目迭代的方法?我目前必须在 URL 中提供迭代键值。

4

1 回答 1

1

如果项目的迭代是指当前迭代,则可以使用以下查询:

query: '((StartDate <= today) AND (EndDate >= today))'

在查询对象中:

var queryObject = {
    key: 'it',
    type: 'iteration',
    fetch: 'Name,ObjectID,Project,StartDate,EndDate',
    query: '((StartDate <= today) AND (EndDate >= today))'
};
于 2013-07-25T23:03:46.660 回答