不更改SAPUI5中搜索的数据文本

您只需要使用noDataText属性来整理您的需求。

您有两个选择,要么可以在控制器中更改,要么可以在XML中更改。

选项1:

在init方法中调用setNoDataText方法

this.byId(“<Your Id>”).setNoDataText(“<Your custom text>”)

选项2:

在XML中添加noDataText属性

<List noDataText="<Custom text>" />