根据文档,这样做应该检索给定实体的验证器:
manager.fetchMetadata().then(function () {
var creditorType = manager.metadataStore.getEntityType("Creditor");
var creditorValidators = creditorType.validators;
});
creditorType.validators 是一个空数组。我不明白为什么,因为当我检查creditorType上的dataProperties时,每个属性都填充了验证器属性。
creditorType对象上的验证器属性不应该是所有验证器属性的集合吗?