この問題があります: .json ファイルから自分のサイトにデータを読み込もうとしましたが、タイトルの特殊文字 (Ó、Í、É、スペース) に問題があります。.HTML ファイルしか変更できません。
これは .html です: http://www.lukcian.x10.mx/json5.html
これは .json です: http://www.lukcian.x10.mx/json/bibliotecas.json
ありがとう
これは例です:
.json:
{
"Bibliotecas": [
{
"BIBLIOTECA": "Biblioteca General de Navarra ",
"DIRECCIÓN ": "Plaza de San Francisco",
"COD. POSTAL": 31001,
"POBLACIÓN": "Pamplona",
"TELÉFONO": 848427797,
.....................
.html:
<!DOCTYPE HTML>
<html>
<head>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=utf-8">
<title>JSON multiple zombies
</title>
<script src="HostFiles/jquery.js"></script>
<link href="reset.css" rel="stylesheet" type="text/css" media="screen">
<script>
$(document).ready(function() {
$.getJSON('json/bibliotecas.json', function(json) {
$.each(json.Bibliotecas, function () {
$('<article class="json"></article>').append(
'<p> ' + this.BIBLIOTECA + '</p>' +
'<p> ' + this["DIRECCIÓN "] + '</p>' +
'<p> ' + this.POBLACIÓN + '</p>' +
'<p> ' + this.TELÉFONO + '</p>' +
'</br></br>'
).appendTo('body');
});
});
});
</script>
</head>
<body>
</body>
</html>
結果:
Biblioteca General de Navarra
undefined
undefined
undefined