这是我如何获取xsodata中ID字段的值:
XXX
它返回以下内容:
test.xsodata/children(1)/parent/ID
我尝试通过此行在控制器中获取该值
<ID xmlns:m="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata" xmlns="http://schemas.microsoft.com/ado/2007/08/dataservices" m:type="Edm.Int32">2</ID>
因此,id未定义。 var id = this.getView().getModel().getObject("/children(1)/parent/ID");
工作正常。
孩子和父母之间的关联是*到1。
如何访问父母的身份证?