将JSON文件显示为HTML

问题描述 投票:0回答:1

大家好。我一直在尝试将JSON导入HTML并将其制作成表格。我的JSON包含:

{
    "cover_title": "Haikyuu!! TO THE TOP",
    "cover_studio": "Production I.G",
    "cover_img": "https://s4.anilist.co/file/anilistcdn/media/anime/cover/large/bx106625-UR22wB2NuNVi.png",
    "format": "TV",
    "duration": "84%",
    "description": "The fourth season of Haikyuu!!\n\nThe Karasuno High School Volleyball Club finally won their way into the nationals after an intense battle for the Miyagi Prefecture Spring Tournament qualifiers. As they were preparing for the nationals, Kageyama is invited to go to All-Japan Youth Training Camp. At the same time, Tsukishima is invited to go to a special rookie select training camp for first-years in Miyagi Prefecture. Hinata feels panic that he\u2019s being left behind as one of the first-years and then decides to show up at the Miyagi Prefecture rookie select training camp anyway...\n\n(Source: Crunchyroll)",
    "genres": [
        "Comedy ",
        " Drama ",
        " Sports"
    ]
},
{
    "cover_title": "Eizouken ni wa Te wo Dasu na!",
    "cover_studio": "Science SARU",
    "cover_img": "https://s4.anilist.co/file/anilistcdn/media/anime/cover/large/bx109298-YvjfI88hX76T.png",
    "format": "TV",
    "duration": "79%",
    "description": "First year high schooler Midori Asakusa loves anime so much, she insists that \"concept is everything\" in animation. Though she draws a variety of ideas in her sketchbook, she hasn't taken the first step to creating anime, insisting that she can't do it alone. The producer-type Sayaka Kanamori is the first to notice Asakusa's genius. Then, when it becomes clear that their classmate, charismatic fashion model Tsubame Mizusaki, really wants to be an animator, they create an animation club to realize the \"ultimate world\" that exists in their minds.\n\n(Source: Crunchyroll)",
    "genres": [
        "Adventure ",
        " Comedy"
    ]
},

和我的html是(我从我的朋友那里得到了这种方式,但是我认为这不适用于我的情况):

<html>
<head>
<script src="https://code.jquery.com/jquery-3.3.1.js"> </script>

<script>
    $(function(){
        $.get('anime.json', function(obj){
            var str = "";
            str+="<table border = '1'><tr><th>No</th><th>Judul</th></tr>";

            $.each(obj, function(n,data){
                str+="<tr><td>"+(n+1)+"</td>";
                str+= "<td>"+data.cover_title+"</td></tr>";
            });
            $('#media').html(str);
        });
    });
</script>
</head>

<body>
  <div id = "media"></div>
</body>
</html>

我也尝试了youtube的另一种方法,但仍然无法正常工作。我能做什么?谢谢。

javascript html
1个回答
0
投票

jQuery Get函数尝试自动解析json字符串并将其转换为数组,但是当遇到和内部错误时,将不会运行成功回调。您的json格式无效,您可以使用此进行确认

$.get('a.json', function(obj){
    var str = "";
    str+="<table border = '1'><tr><th>No</th><th>Judul</th></tr>";

    $.each(obj, function(n,data){
        str+="<tr><td>"+(n+1)+"</td>";
        str+= "<td>"+data.cover_title+"</td></tr>";
    });
    $('#media').html(str);
})
.catch( function(e){
    alert('Error');
});

您应该像这样更正

[{
    "cover_title": "Haikyuu!! TO THE TOP",
    "cover_studio": "Production I.G",
    "cover_img": "https://s4.anilist.co/file/anilistcdn/media/anime/cover/large/bx106625-UR22wB2NuNVi.png",
    "format": "TV",
    "duration": "84%",
    "description": "The fourth season of Haikyuu!!\n\nThe Karasuno High School Volleyball Club finally won their way into the nationals after an intense battle for the Miyagi Prefecture Spring Tournament qualifiers. As they were preparing for the nationals, Kageyama is invited to go to All-Japan Youth Training Camp. At the same time, Tsukishima is invited to go to a special rookie select training camp for first-years in Miyagi Prefecture. Hinata feels panic that he\u2019s being left behind as one of the first-years and then decides to show up at the Miyagi Prefecture rookie select training camp anyway...\n\n(Source: Crunchyroll)",
    "genres": [
        "Comedy ",
        " Drama ",
        " Sports"
    ]
},
{
    "cover_title": "Eizouken ni wa Te wo Dasu na!",
    "cover_studio": "Science SARU",
    "cover_img": "https://s4.anilist.co/file/anilistcdn/media/anime/cover/large/bx109298-YvjfI88hX76T.png",
    "format": "TV",
    "duration": "79%",
    "description": "First year high schooler Midori Asakusa loves anime so much, she insists that \"concept is everything\" in animation. Though she draws a variety of ideas in her sketchbook, she hasn't taken the first step to creating anime, insisting that she can't do it alone. The producer-type Sayaka Kanamori is the first to notice Asakusa's genius. Then, when it becomes clear that their classmate, charismatic fashion model Tsubame Mizusaki, really wants to be an animator, they create an animation club to realize the \"ultimate world\" that exists in their minds.\n\n(Source: Crunchyroll)",
    "genres": [
        "Adventure ",
        " Comedy"
    ]
}]
© www.soinside.com 2019 - 2024. All rights reserved.