假设我有一个实体 Person 和定义属性“路径”的字符串 - 比如说“Address.Country”。是否有一个功能可以让我访问可观察的持有国家?
问问题
170 次
1 回答
1
您可以从 getProperty 和 setProperty 方法开始。
var address = myEntity.getProperty("Address");
var country = address.getProperty("Country");
然后你可以使用
function getPropertyPathValue(obj, propertyPath) {
var properties;
if (Array.isArray(propertyPath)) {
properties = propertyPath;
} else {
properties = propertyPath.split(".");
}
if (properties.length === 1) {
return obj.getProperty(propertyPath);
} else {
var nextValue = obj;
for (var i = 0; i < properties.length; i++) {
nextValue = nextValue.getProperty(properties[i]);
// == in next line is deliberate - checks for undefined or null.
if (nextValue == null) {
break;
}
}
return nextValue;
}
}
'propertyPath' 参数可以是字符串数组或 '.' 分隔路径
var country = getPropertyPath(myEntity, "Address.Country");
或者
var country = getPropertyPath(myEntity, ["Address", "Country"]);
于 2013-11-07T16:06:41.627 回答