英文:
Data binding in UI5
问题
我有一个来自API的数据输出,如下所示,在jsonModel的samplemodel中:
[
{
“Info” : { Id: “id1”, val: [. {id:”subid1”,name : “name1”}]}
},
{
“Info” : { Id: “id2”, val: [. {id:”subid2”,name : “name2”}]}
}
]
我如何通过将值绑定到sap.m.table
来显示数据。尝试以下操作:
<Table items="{path:'samplemodel>'}">
<Text text="{samplemodel>/Info/Id}">
请注意,你提供的JSON数据中有一些问题,例如双引号应该使用英文双引号而不是中文双引号,并且在JSON路径中应该使用斜杠 /
而不是大于号 >
. 如果你能提供更准确的JSON数据和路径,我可以帮助你更好地进行绑定。
英文:
I have an data output from an api as below In the jsonModel samplemodel :
[
{
“Info” : { Id: “id1”, val: [. {id:”subid1”,name : “name1”}]}
},
{
“Info” : { Id: “id2”, val: [. {id:”subid2”,name : “name2”}]}
}
]
How do I display by binding the values to sap.m.table . Tried the following
<Table items=“{path:’samplemodel>/‘ }”
<Text text:“{samplemodel>/info>id}”>
答案1
得分: 1
<Text text:"{samplemodel>info/id}">
英文:
<Text text:“{samplemodel>info/id}”>
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论