2016-05-16 89 views
1

所有組件我知道,你可以用一個單一的組件:SAPUI5:獲取存在於當前窗口

sap.ui.component("ComponentID"); 

但有也有辦法列出住在當前窗口上下文中的所有組件嗎?

THX 克里斯

回答

2

sap.ui.component(string)委託給sap.ui.getCore().getComponent()。有了這個,你可以通過id查詢一個特定的組件。

sap.ui.core.Core處有一個registry of components。但其標記爲私人,甚至有TODO擺脫它。所以我會建議不要直接訪問。

+0

不僅是不推薦使用此註冊表,它不能從sap.ui.getCore()訪問... – cschuff

相關問題