我如何在集会中找到一个缺陷对象的creatationdate ?
我有一个缺陷对象的数组,并且我能够通过在循环中执行以下操作来找到缺陷的所有属性:
project = defects[i].Project.Name;
environment = defects[i].Environment;
等我想要的所有其他属性,但CreationDate不工作…
我试着
creationDate = defects[i].PersistableObject.CreationDate;
creationDate = defects[i].CreationDate;
但是它返回'undefined'
任何想法?
谢谢!
您是否在请求的取回中包含了creatationdate ?如果是这样,您应该能够像上面那样访问每个结果:
creationDate = defects[i].CreationDate;