什么是SAP UI5的Component-preload.js

Posted JerryWangSAP

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了什么是SAP UI5的Component-preload.js相关的知识,希望对你有一定的参考价值。

First of all, the Component-preload.js works as expected. In your design time, ( WebIDE or Eclipse ) , all development artifact, the .js files are organized into different folders. And in the productive use case, the content of all js files are combined into a single file to save network traffic, reduce needed roundtrip to load those resource. See more details from these links:

http://scn.sap.com/thread/3652908
http://scn.sap.com/thread/3486179

So back to your question: why although you have overwritten onAfterRendering method, however still the standard one is called in the runtime?

Again, this unexpected behavior is caused by closure.

The AfterRendering function is not directly called but via event-subscribe&raise style, via javascript keyword apply.

技术图片
技术图片

If you find the framework code is difficult to read, just refer to the example below which is caused by the same reason by easier to understand.

http://stackoverflow.com/questions/750486/javascript-closure-inside-loops-simple-practical-example

finally, the purpose of the line oAtt.oHeaderToolbar.setVisible(false); is to hide the built-in toolbar of the attachment subview. If this line is missing, there will be duplicate toolbar for each uploaded attachment.

Currently the standard code in onAfterRendering never considers the possibility that the attachment panel would be removed from UI, thus I think this is a bug. Please kindly create one incident to my component and we will do a fix for it. Thanks a lot!

技术图片

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

以上是关于什么是SAP UI5的Component-preload.js的主要内容,如果未能解决你的问题,请参考以下文章

SAP UI5和CRM WebUI的View和Controller是如何绑定的

OPEN(SAP) UI5 学习入门系列之一:扫盲与热身(上)

如何在 SAP UI5 代码中生成 UUID? [复制]

SAP UI5 里 FlexBox 控件使用的一个例子

SAP UI5 设备类型检测 Device API 的工作原理

SAP成都研究院非典型程序猿,菜园子小哥:当我用UI5诊断工具时我用些什么