Scenario
做一个table binding,consume oData service。
Root entity set是ProductSet。ProductSet又有2个navigation properties: "ToSupplier" + "ToSalesOrderLineItems"。
通过如下代码,可以成功展开supplier的信息。
<Table id="WLtable" items="{ path: '/ProductSet', sorter: { path: 'ProductID', descending: false }, parameters: { expand: 'ToSupplier' } }">
问题:如何同时展开supplier和salesOrderLineItems信息
Solution
使用如下写法:
expand: "ToSupplier,ToSalesOrderLineItems"
如果 "ToSupplier" 是 "ToSalesOrderLineItems"的parent,那么应该这么写:
expand: "ToSupplier/ToSalesOrderLineItems"
网友评论