我有一个奇怪的 UI5 问题。我从控件的绑定上下文创建一个字符串,如下所示:
Entity('Element%3AInfo%2CID')
仅供参考,它看起来像这样解码:Entity('Element:Info,ID')
但是,我从以下方法链中获取此字符串:
oItem.getBindingContext().getPath().substr(1)
所以,整个(非常基本的)“导航到”块看起来像这样:
showElement : function (oItem) {
'use strict';
var bReplace = jQuery.device.is.phone ? false : true;
sap.ui.core.UIComponent.getRouterFor(this).navTo("element", {
from: "master",
element: oItem.getBindingContext().getPath().substr(1),
otherpattern: "something"
}, bReplace);
},
此块中的控制台日志console.log(oItem.getBindingContext().getPath().substr(1));
提供了正确的字符串。
console.log(oItem.getBindingContext().getPath().substr(1)) 的控制台输出:Entity('Element%3AInfo%2CID')
问题是(请注意,这很奇怪)我的 URL 模式“ {element}
”充满了:
Entity('Element%253AInfo%252CID')
解码:Entity('Element%3AInfo%2CID')
您可能已经知道,模式的“%”是经过编码的。我不明白为什么 UI5 会这样做。
您还应该知道我测试过的这些事实:
decodeURIComponent(oItem.getBindingContext().getPath().substr(1))
导致“Entity('Element:Info,ID')
”encodeURIComponent(oItem.getBindingContext().getPath().substr(1))
导致“Entity('Element%25253AInfo%25252CID')
”oItem.getBindingContext().getPath().substr(1).replace("%3A", ":")
导致“Entity('Element:Info%252CID')
”
这是一个错误吗?我的意思是只要不出现“%”,URI 模式就不会受到影响。出于某种奇怪的原因,这个特殊字符被编码,而其他一切都无关紧要。