当前位置:网站首页>SAP UI5 ensures that the control id is globally unique implementation method
SAP UI5 ensures that the control id is globally unique implementation method
2022-08-04 19:33:00 【HUAWEI CLOUD】
stable ID 用于在运行时识别和修改控制器内的控件. 但是,如果您重用或嵌套这些视图,这些 stable ID 将不再是唯一的. 为了避免 id 冲突,每个 SAP UI5 视图都将自己的 ID 作为前缀添加到其所有子控件中.
看一个例子,下面这个 xml 视图里,Button 控件的 id 为:aButton
<mvc:View viewName="sap.hcm.ButtonView" controllerName="sap.hcm.myController" xmlns="sap.m" xmlns:mvc="sap.ui.core.mvc"> <Button id="aButton" text="Click me"/><mvc:View>
然后我定义了另一个 xml 视图,把上面这个包含了 button 控件的 xml 视图,嵌套进去:
<mvc:View viewName="sap.hcm.ContainerView" controllerName="sap.hcm.Address" xmlns="sap.ui.commons" xmlns:core="sap.ui.core" xmlns:html="http://www.w3.org/1999/xhtml"> <mvc:View id="ButtonView1" viewName="sap.hcm.ButtonView"/> <mvc:View id="ButtonView2" viewName="sap.hcm.ButtonView"/><mvc:View>
运行时,两个被嵌套的 xml 视图 id 为:
myContainerView–ButtonView1
myContainerView–ButtonView2
获取这些嵌入 xml 视图实例的代码:
var oButtonView1 = oView.byId("ButtonView1");
获取每个 xml 视图实例里的 button 实例的代码:
var oButton = oButtonView1.byId("aButton");
边栏推荐
猜你喜欢
随机推荐
直播回顾|7 月 Pulsar 中文开发者与用户组会议
译文推荐|Apache Pulsar 隔离系列(四):单集群隔离策略
【Attention演变史】翻译模型seq2seq (第二弹)
华为企业组网实例:VRRP+MSTP典型组网配置
如果是测试 axi dma抓数的话 看这里
openharmony初体验(1)
Redis数据库—定义、特点、安装、如何启动与停止
一些性能测试的要点
SAP UI5 视图控制器 View Controller 的生命周期方法 - Lifecycle methods
程序员如何在职场上少走弯路?
awk 统计差值记录
简易数据缓存层的建立
getBoundingClientRect
动手学深度学习_VggNet
力扣题(5)—— 最长回文子串
Jmeter - Heap配置原因报错Invalid initial heap size: -Xms1024m -Xmx2048mError
红外图像滤波
zynq 记录
lds链接的 顺序问题
前3名突然变了,揭秘 7 月编程语言最新排行榜