1
我想向manifest.json添加新模型。 該模型應該被擴展。SAPUI5展開清單中的模型
https://myPath/services/myService.xsodata/SubPath?$expand=CustomerRef
,因此DataSource定義:
"dataSources": {
"mainService": {
"uri": "/myPath/services/myService.xsodata/",
"type": "OData",
"settings": {
"odataVersion": "2.0",
"localUri": "localService/myService.xsodata/metadata.xml"
}
}
和模型的定義:
"models": {
"Customer": {
"type": "sap.ui.model.odata.v2.ODataModel",
"settings": {
"useBatch": "false"
},
"dataSource": "mainService"
}
我如何添加擴展到模型?
什麼將是方法如果我想從外部傳遞屬性以便將記錄更改爲升序和降序?我怎樣才能做到這一點 ? – 2017-08-23 15:39:15
@johndeer看看節[「手動排序和過濾的聚集綁定」(https://sapui5.hana.ondemand.com/#docs/guide/ec79a5d5918f4f7f9cbc2150e66778cc.html#loioec79a5d5918f4f7f9cbc2150e66778cc__section_N100CF_N10013_N10001) – boghyon
謝謝你。我明白了。現在是另一個問題,如果我想取平均值。因爲odata 2.0不具備此功能。 – 2017-08-28 09:00:31