例如,在我的 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");
}
});
谢谢!