我使用 ajax 作为搜索功能。但是,它无法搜索 unicode 字符。这是导致问题的代码
success: function(data){
var url = base_url + "/?s=ryhmät";
location.href=url;
}
url 正确传递,但 location.href 具有编码字符的值。像 base_url/?s=ryhm%E4t
我尝试使用 decodeURI/encodeURI 函数,似乎不起作用。如果有人能建议我一个解决方案,我将不胜感激。