有什么方法可以知道何时加载模型?
示例:
sap.ui.controller("myapp.MyViewController", {
onInit: function() {
this.router = sap.ui.core.UIComponent.getRouterFor(this);
this.router.attachRoutePatternMatched(this._handleRouteMatched, this);
this.model = sap.ui.getCore().byId("app").getModel("mymodel");
},
onAfterRendering: function() {
console.log(this.model);
}
...
在这种情况下,模型实例已定义,但它包含空对象,因为没有加载数据。
如果我使用:
包装console.log方法setTimeout(function() {
console.log(sap.ui.getCore().byId("app").getModel("mymodel"));
}, 0);
然后模型数据被正确加载,但我想要比使用setTimeout更可靠。
答案 0 :(得分:5)
班级sap.ui.model.Model有一个名为requestCompleted
(link)的活动。因此,您可以使用方法attachRequestCompleted
(link):
this.model.attachRequestCompleted(function(oEvent){
var model = oEvent.getSource();
console.log(model);
});