たとえば、私の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");
}
});
ありがとう!