学习MDN中使用JSON文件时,文件加载不出来

在学习MDN中,使用JSON这一章节中碰到的问题)

在这里面我写好了代码,之后内容总是出来一半,找了半天也没找到

 function showHeroes(jsonObj) {
      var heroes = jsonObj['member'];

      for(var i = 0; i < heroes.length; i++) {
        var myArticle = document.createElement('article');
        
  </body>
</html>

完整代码看下面
https://github.com/mdn/learning-area/blob/master/javascript/oojs/json/heroes-finished.html

其中,这里面的JSON文件网址是:https://mdn.github.io/learning-area/javascript/oojs/json/superheroes.json
我之前写的代码是jsonObj[‘member’]
但是应该为jsonObj[‘members’]
少了一个s,以后写程序一定要更加的注意

猜你喜欢

转载自blog.csdn.net/king__12/article/details/83307416