码迷,mamicode.com
首页 > 其他好文 > 详细

SAP UI5应用如果遇到数据绑定问题时,应该如何自己定位问题?

时间:2020-09-17 17:07:23      阅读:32      评论:0      收藏:0      [点我收藏+]

标签:exactly   att   instant   oss   framework   应该   contains   http   ted   

I will use the field “ClosingDate” to demonstrate my favorite approach to trouble shoot field binding issue. Generally speaking, the issue could be summarized as that although you have bound your UI control to a given field of a Json or odata model, however in the runtime nothing is displayed in the control.

In order to find the root cause of such issue, we need to understand the logic that how is the field value in a model bound to our control and finally displayed in the UI.

技术图片

The field above, “Closing Date”, is bound to the model field “ClosingDate” in the xml view.

技术图片

In the runtime, such binding relationship will be represented by an instance of Binding.

技术图片

The corresponding js file for each kind of property binding could be found from this folder:

技术图片

Within this folder, you can find dedicated js file for OData Model property, Json Model property and i18n Model property accordingly.
The Binding and ClientPropertyBinding are the prototype of these concrete binding type.

技术图片

Since there are so many controls which have been bound to model fields, the constructor of Binding will be called again and again for each binding relationship.

As I am only interested with “ClosingDate”, so I make small modifications on the Binding.js directly in Chrome.

Then I resume the execution of debugger and soon the debugger stops at the very point where the mapping instance for “ClosingDate” is instantiated:

技术图片

Every binding instance has one attribute sPath to indicate which model field it represents, and another attribute oValue, which contains the actual content of the model field, which will be rendered in the control.

Now I would like to know for the model field “ClosingDate”, when the oValue will be filled and where the content of oValue come from. So I switched to the inner callstack:

技术图片

The value will be filled by this._getValue():

技术图片

And now we are clear: the oValue of current binding instance comes from the corresponding node of OData model, to be exactly using UI5 terminology, from the binding Context.

技术图片

The OData Model instance has one attribute “oData” which contains detail data for each list item. ODataModel._getObject will get the binding context of current binding property instance and then fetch the property value from that binding context:

技术图片
技术图片

Now this.oValue is filled and this very value will be displayed inUI.

技术图片

When the control containing any attributes which are bound to a property of Model, the function “getExternalValue” of related property binding instance will be called. The result will be displayed in UI.

If there is any formatter defined for the property binding by application, for example in my application I have defined my custom formatter “dateFormatterMaster”. In line 79 framework will call such formatter if there is any.

技术图片

And through debugging and callstack, I can see my formatter is called.

技术图片

要获取更多Jerry的原创文章,请关注公众号"汪子熙":
技术图片

SAP UI5应用如果遇到数据绑定问题时,应该如何自己定位问题?

标签:exactly   att   instant   oss   framework   应该   contains   http   ted   

原文地址:https://www.cnblogs.com/sap-jerry/p/13625677.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!