如果要验证breeze-entity,请编写:
this.entityAspect.validateEntity()
但是,如果我只想为复杂类型触发验证,而不激发整个实体验证呢?
complexType.complexAspect没有方法validateEntity。
那么,我该怎么办?
编辑后我看到杰伊回答:
我尝试使用方法validateProperty。 但结果是它总是返回true,因为它不检查每个属性。 所以,我尝试多次调用方法validateProperty,每次都调用complexType的其他字段。它给我一个有效/无效的boolian结果,但不更新验证错误。
以下是我看到Jay回答后尝试的代码,但没有帮助:
validateSingleField(myComplexProertyName);
validateSingleField函数的第一个版本:(结果是它总是返回true,因为它不检查每个属性)
function validateSingleField(object, fieldName) {
var entityAspect = object.entityAspect;
var objectType = object.entityType;
var prop = objectType.getProperty(fieldName);
var value = object.getProperty(fieldName);
if (prop.validators.length > 0) {
var context = { entity: entityAspect.entity, property: prop, propertyName: fieldName };
if (entityAspect._validateProperty(value, context)) {
return true;
}
return false;
}
}
第二个版本:(它给我boolian-valid有效/无效,但不更新验证错误。)
function validateSingleField(object, fieldName) {
var aspect = object.entityAspect || object.complexAspect;
var entityAspect = object.entityAspect || object.complexAspect.getEntityAspect();
var objectType = object.entityType || object.complexType;
var prop = objectType.getProperty(fieldName);
if (prop.isComplexProperty) {
var isOk;
objectType.getProperties().forEach(function (p) {
isOk = isOk && validateSingleField(object[fieldName](), p.name)//writing 'object[fieldName]()' - is for send the entire complexType of the entity
});
return isOk;
}
else {
{
var value = object.getProperty(fieldName);
if (prop.validators.length > 0) {
var context = { entity: entityAspect.entity, property: prop, propertyName: fieldName };
if (entityAspect._validateProperty(value, context)) {
return true;
}
return false;
}
}
}
}
答案 0 :(得分:1)
没有单独的方法来验证复杂类型,因为验证结果都是父母的一部分'实体。复杂类型属性被视为实体的一部分,而不是独立实体。
您可以做的是在'复合体上调用 validateProperty 。父实体的财产。