关于sap:SAP-Fiori-Elements-Object-Page页面渲染原理

4次阅读

共计 3467 个字符,预计需要花费 9 分钟才能阅读完成。

I have already been working with Smart template for one month. Since now no frontend JavaScript code for application is generated but instead the template maintained centrally by SAP is used in the runtime, so it might be a little bit difficult for trouble shooting when you meet with issues, for example, the object page is blank after navigation, or some field in object page is empty, and so on.

I tried to explain my personal understanding about how object page is rendered in the runtime. For list report page, the logic is the same. Since I am not expert on smart template, so please kindly point it out if there is something wrong in this blog.

Per my understanding, I will explain the technical implementation of Smart Template as: An XML view with hierarchical XML fragments where Smart Controls works with the help of OData annotation.

Design time

Where do we start to do self-study on Smart Template?

Switch any one of application generated by Smart Template to debug mode using Ctrl+Alt+Shift+P, refresh and you can observe the following XML files are loaded. The Details.view.xml contains the overall definition of object page view.

Have a look at the source code of this xml view file, you can find the object page consists of six building blocks, each block is included in the object page via fragment. This is the reason why you could also see the download of these six fragment files from the above screenshot.

The dedicated facets we see in object page are included in Sections fragment.

So open Sections.fragment.xml.

Finally, open Facet.fragment.xml view:

Till now, the source code of these template files have perfectly explained why you have to define annotations such as LineItem and Identification etc. The annotations you find in the template file work as a contract between Smart Template and developers who consume them. If developers strictly follow the protocol, the whole thing orchestrates well.

Runtime

How are the above mentioned fragment, extension point and other stuff loaded in the runtime? You should already recognize several tags like with, repeat and if in XML view. How are these tags parsed in the runtime?

Switch to debug mode, in Chrome development tool click Sources tab, Ctrl+O and type“XMLPre”, there will be auto completion for search result. Choose XMLPreprocessor-dbg.js:

Since the details.view.xml is loaded in the runtime into memory as a DOM and parsed via depth-first search recursively, this is so called“Pre-Process”as indicated by the file name XMLPreprocessor-dbg.js itself. In this file you can find a big SWITCH CASE statement and each tag is handled in different case statement accordingly.

For example, in XML file it is defined that the template:repeat operation will only be performed if the test defined by formattersap.suite.ui.generic.template.js.AnnotationHelper.hasBreadCrumbs has returned true.

In the runtime, the evaluation would be debugged as below:

The callstack could be found below:

You can find detail log about this pre-processing result in Console tab of Chrome development tool with filter“XMLPreprocessor”.

How to get pre-processing result

Set a breakpoint on line 187 of XMLView-dbg.js, and the XML source code is just stored in variable this._xContent.


If you open converted xml file, you can find that all place holders via“{}“defined in template file like Details.view.xml are now filled with actual value provided by annotation.

Annotation datasource

In manifest.json file data source is defined which consists of two parts: the remote one coming from backend and the local one, annotations.xml contained in project folder:

This is the reason in Network tab you can observe there are two sequential http requests for the remote one and local one.

This is an example of remote annotation:

This is an example of local annotation:

OData metadata merged with Annotations

The two annotation data sources will be merged with OData metadata in line 187 below:

All subsequent processing are done based on this MERGED data model.
Hope this blog can shed light on your smart template related trouble shooting process.

要获取更多 Jerry 的原创文章,请关注公众号 ” 汪子熙 ”:

正文完
 0