我有这一行来从此网址http://localhost:4200/אבי
获取查询字符串:
const path = location.path(true); // returns "%D7%90%D7%91%D7%99"
我可以将其转换回正常的希伯来字母(在这种情况下为אבי
)吗?
答案 0 :(得分:2)
您可以使用全局函数decodeURI
:
console.log(decodeURI("%D7%90%D7%91%D7%99"));

有一个对手,encodeURI
反其道而行之:
console.log(encodeURI("אבי"));