2
我有一個頁面,通過ExtJS的加載其他頁面中的iframe:是encodeURI和Ext.urlDecode
alert(UNID); // returns ...AAA==
...
autoEl:{
tag:"iframe",
src: someurl+'?anyparam=anything&unid='+encodeURI(UNID)+'&someparam='
// Chrome Console (Network tab) tells me the URI is ...AAA==&someparam=
}
和其他網站使用ExtJS的給定PARAMS解碼。
var params = Ext.urlDecode(window.location.search);
alert(params.unid); // returns ...AAA
我的錯誤在哪裏?如果沒有,這是encodeURI還是urlDecode中的錯誤?