0

例如,在我的 JSON 文件中,我有字符“ä”。但是当加载到我的 html 中时,它不会呈现。我必须向 Ajax 添加一些东西吗?

$.ajax({
        url: "json/content.json",
        data: "nocache=" + Math.random(),
        type: "GET",
        contentType: "application/json",
        dataType: "json",
        success: function(source){
            data = source;
            showInfo();
        },
        error: function(data){
            alert("Failed to load content");
        }
    }); 

谢谢!

4

1 回答 1

1

这听起来像是一个字符集问题,json 对特殊字符没有问题。确保服务器回复和显示它的 html 页面之间的字符集匹配。

于 2013-03-26T10:21:00.123 回答