绑定完成后执行操作

时间:2015-04-21 11:00:54

标签: sapui5

我写这部分是为了用选择控制器绑定OData信息:

var countrItems = new sap.ui.core.ListItem();
countrItems.bindProperty("key", "Land1");
countrItems.bindProperty("text", "Landx");
var CountrSelect = this.byId("CountrySelect");
CountrSelect.setModel(oModelTriptab);
CountrSelect.bindItems("/Countries", countrItems);

我想在绑定完成后执行一个操作(我想选择一些可以动态更改的默认值)。

2 个答案:

答案 0 :(得分:6)

将处理程序附加到Binding 提供的事件:

<Select items="{
  path: '/Countries',
  events: {
    dataRequested: '.onCountriesRequested',
    dataReceived: '.onCountriesReceived',
    change: '.onCountriesChange'
  }
}">

这些事件不仅可以应用于 ListBindings ,还可以应用于所有绑定。 注意: PropertyBindings 执行会触发任何请求,因此不需要dataRequesteddataReceived

  

我想在绑定完成后执行一个动作。

在这种情况下,您可以将处理程序附加到changedataReceived事件,以获得有关“完整”绑定的通知。

与将处理程序附加到requestCompleted相比,上述方法更具描述性,最重要的是特定于绑定。

List,m.Table,m.Tree,......

或者,UI5为从sap.m.ListBase派生的控件提供事件updateFinished。它与change事件类似,但提供了更多信息,例如其他"Growing" 原因实际总计参赛人数。

<List
  updateFinished=".onCountriesUpdateFinished"
  items="..."
>
onCountriesUpdateFinished: function(event) {
  const reasonForUpdate = event.getParameter("reason"); // "Refresh", "Growing", "Filter", "Sort", "Context", ...
  const currentlyLoadedNumberOfCountries = event.getParameter("actual");
  const totalNumberOfCountries = event.getParamter("total") // Value of $count
  // ...
}

答案 1 :(得分:4)

使用模型的requestCompleted事件处理程序执行在模型数据更新后应立即执行的任何操作。

绑定本身应该是静态的(即它不会改变)所以你只对数据发生变化感兴趣


编辑这是一个示例实现:

var that = this;
oModelTriptab.attachRequestCompleted(function(oEvent){
    var oSelect = that.byId("CountrySelect");
    oSelect.setSelectedKey("whatever");
});

有关详细信息,请参阅https://openui5.hana.ondemand.com/docs/api/symbols/sap.ui.model.Model.html#attachRequestCompleted