Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在编写和展示 Rally 之外的 Rally 应用程序。有谁知道使用 Rally SDK 1.33 动态确定项目迭代的方法?我目前必须在 URL 中提供迭代键值。
如果项目的迭代是指当前迭代,则可以使用以下查询:
query: '((StartDate <= today) AND (EndDate >= today))'
在查询对象中:
var queryObject = { key: 'it', type: 'iteration', fetch: 'Name,ObjectID,Project,StartDate,EndDate', query: '((StartDate <= today) AND (EndDate >= today))' };