我有这样的网址:
xyz.com/sites/germany/Pages/März_2017_P.aspx
现在,当我在打字稿中这样做时:
var sPath = window.location.pathname;
我得到了这个:
/sites/germany/Pages/M%C3%A4rz_2017_P.aspx
但是我希望这个特殊字符名称的格式相同。有人可以建议我怎么做。
答案 0 :(得分:0)
使用decodeURI()方法解析网址特殊字符:
let url = '/sites/germany/Pages/M%C3%A4rz_2017_P.aspx';
console.log(url);
let decode = decodeURI(url);
console.log(decode);
日志:
/sites/germany/Pages/M%C3%A4rz_2017_P.aspx
/sites/germany/Pages/März_2017_P.aspx