我们在单步调试 SAP UI5 OData 模型或者 JSON 模型初始化代码时,都会发现 sap.ui.model.Model
构造函数调用了其基类 MessageProcessor
的构造函数,如下图所示:
MessageProcessor 是 SAP UI5 统一存储和管理各种类型的 Message 的实现类之一。
以下是在 SAP UI5 里手动创建消息或扩展框架提供的消息传递功能的一些方法:
-
可以通过中央 sap.ui.core.message.MessageManager API 手动创建自定义消息。 对于这些手动创建的消息,应用程序必须确保适当的消息生命周期。
-
对于自定义目标格式,可以使用自定义消息处理器。 自己的消息处理器要继承类sap.ui.core.message.MessageProcessor。
-
如果使用的后端以特殊方式提供消息,可以使用自己的sap.ui.core.message.MessageParser 实现。
Message Model
通过调用 getMessageModel() 方法从消息管理器中检索消息模型。可以直接在应用程序中使用它,也可以将它用作参考实现。
可以像使用任何其他模型一样使用消息模型将聚合绑定到根路径(/
),例如列表中的项目,并添加过滤器和排序器。 /
集合中的每个项目都代表一个 sap.ui.core.message.Message 对象,因此可以绑定到为此类对象指定的所有属性。 MessagePopover 控件用于向用户显示消息。
示例代码如下:
// "Button" required from "sap/m/Button"
// "MessagePopover" required from "sap/m/MessagePopover"
// "MessagePopoverItem" required from "sap/m/MessagePopoverItem"
var oMessagePopoverButton = new Button({
text: "Show MessagePopover",
type: "Accept",
press: function() {
oMP.openBy(this);
}
});
var oMP = new MessagePopover({
items: {
path:"message>/",
template: new MessagePopoverItem({ description: "{message>description}", type: "{message>type}", title: "{message>message}"})
}
});
oMP.setModel(sap.ui.getCore().getMessageManager().getMessageModel(),"message");
oMessagePopoverButton.placeAt("content");
OData V2 Messages
OData V2 消息要么由 sap.ui.model.odata.ODataMessageParser 自动创建并由 sap.ui.model.odata.v2.ODataModel 处理,要么可以由应用程序手动创建。
这些消息的目标可以为空。 在这种情况下,消息没有特定目标并且与整个应用程序相关。如果设置了目标,则它必须对应于绑定路径,然后使用该路径将消息传播到相应的绑定。如果这些绑定属于实现 refreshDataState 函数的控件,则该控件能够对数据状态更改做出反应。
标签:MessageProcessor,MessagePopover,绑定,sap,ui,消息,UI5,message,SAP From: https://blog.51cto.com/jerrywangsap/6107937