如何在拉力赛中找到缺陷对象的CreationDate?
我有一系列缺陷对象,我可以通过在循环中执行以下操作来找到缺陷的所有属性:
project = defects[i].Project.Name;
environment = defects[i].Environment;
等我想要的所有其他属性,但CreationDate不起作用......
我试过
creationDate = defects[i].PersistableObject.CreationDate;
creationDate = defects[i].CreationDate;
但它返回'undefined'
有什么想法吗?
谢谢!
答案 0 :(得分:0)
您是否在提取请求中包含了CreationDate?如果是这样,您应该能够像上面那样在每个结果上访问它:
creationDate = defects[i].CreationDate;