mb_convert_encoding()
如果与 PHP 和 jQuery AJAX 一起使用,则不适用于西里尔字符和其他特殊字符。错误如下:
未捕获的 URIError: 在 Object
的 decodeURIComponent ()处的 URI 格式错误。
(流行:3725)
在你(jquery-3.3.1.min.js:12)
在 Object.fireWith [as resolveWith](jquery-3.3.1.min.js:12)
在 k(jquery-3.3.1. min.js:12)
在 XMLHttpRequest。(jquery-3.3.1.min.js:12)
我的问题是我是否需要在 jQuery 中解码响应值。
$str = 'Hello Frèdèrï, How are you.';
$response = mb_convert_encoding($str, 'UTF-8', 'auto');
$this->json_render($response);
$.ajax({
url: 'page.php?page=' + page,
type: "get",
timeout: 30000,
tryCount: 0,
retryLimit: 3,
beforeSend: function () {
$('.ajax-load').show();
$('.load-more').hide();
},
}).done(function (data) {
if ($.trim(data) == "") {
last_page = true;
$('.ajax-load').hide();
$('.no-data-found').show();
return;
}
$('.ajax-load').hide();
$('.load-more').show();
var content = $(decodeURIComponent(data));
$grid.append(content).masonry('appended', content);
$("img.lazyload").myLazyLoad();
$('.modal').modal();
loadAddThis();
})