抓住缺陷对象的CreationDate

时间:2013-05-08 19:36:52

标签: date object parent rally defects

如何在拉力赛中找到缺陷对象的CreationDate?

我有一系列缺陷对象,我可以通过在循环中执行以下操作来找到缺陷的所有属性:

project = defects[i].Project.Name;
environment = defects[i].Environment;

等我想要的所有其他属性,但CreationDate不起作用......

我试过

creationDate = defects[i].PersistableObject.CreationDate;
creationDate = defects[i].CreationDate;

但它返回'undefined'

有什么想法吗?

谢谢!

1 个答案:

答案 0 :(得分:0)

您是否在提取请求中包含了CreationDate?如果是这样,您应该能够像上面那样在每个结果上访问它:

creationDate = defects[i].CreationDate;