如何用 json 数据制作卡片滑块

How to make a card slider with json data

我正在尝试使用 json 数据制作卡片滑块,如下所示:http://femkreations.com/projects/ajax/ajax-carousel/index.php and instead I want to use json data from this url: https://api.thecatapi.com/v1/breeds 以显示 5 张卡片,其中包含猫的名称、描述和图像。我已经使用 XMLHttpRequest 加载了 json 数据,但我真的不知道从现在开始我需要做什么。我是这些东西的初学者,希望有人能帮助我。

首先你要根据自己的JSON数据定义要使用的模板 为了简化起见,假设您的 JSON 看起来像这样

{
  cats: [

       {
        name: "rico",
        power_level: "500",
        bio: "nice dude"
       },
       {
        name: "johnnyboi",
        power_level: "1200",
        bio: "bad guy"  
       },
       {
        name: "earl",
        power_level: "over9000",
        bio: "stronk guy"
       }
     ]
}

这家伙在 HTML 代码中这样定义模板(介于 HTML 代码之间)。请注意,您将不得不工作或复制 CSS class 扬声器。

<script id="speakerstpl" type="text/template">
{{#speakers}}
    <div class="speaker">
        <img src="images/{{shortname}}_tn.jpg" alt="Photo of {{name}}" />
        <h3>{{name}}</h3>
        <h4>{{reknown}}</h4>
        <p>{{bio}}</p>
    </div>
{{/speakers}}
</script>

所以让我们按照您想要的方式调整模板,以适应我上面写的 JSON:

<script id="speakerstpl" type="text/template">
{{#cats}}
    <div class="speaker">            
        <h3>{{name}}</h3>
        <h4>{{power_level}}</h4>
        <p>{{bio}}</p>
    </div>
{{/cats}}
</script>

现在,在我们使用函数背后的魔法之前,请注意此页面使用了以下外部库(不要忘记将它们添加到您的文档中):

<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/1.9.1/jquery.min.js" type="text/javascript"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery.cycle/2.9999.8/jquery.cycle.all.min.js" type="text/javascript"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/mustache.js/0.7.0/mustache.min.js" type="text/javascript"></script>

让我们打电话:

var data = {
  cats: [

       {
        name: "rico",
        power_level: "500",
        bio: "nice dude"
       },
       {
        name: "johnnyboi",
        power_level: "1200",
        bio: "bad guy"  
       },
       {
        name: "earl",
        power_level: "over9000",
        bio: "stronk guy"
       }
     ]
}

var template = $('#speakerstpl').html();
var html = Mustache.to_html(template,data);
$('#carousel').html(html); //this element is a div inside another div (wrapper)
//final step for the rotation/cycle
$('#carousel').cycle({
        fx: 'fade',
        pause: 1,
        next: '#next_btn',
        prev: '#prev_btn',
        speed: 500,
        timeout: 10000
    });

编辑:这里有一段来自 https://developpaper.com/xmlhttprequest-for-asynchronous-requests/ 的简单代码,以便顺便获取您的数据:

var data = {cats: []};
var xhr = new XMLHttpRequest(),
method = "GET",
url = "https://api.thecatapi.com/v1/breeds";

xhr.open(method, url, true);
xhr.responseType = "json";
xhr.onreadystatechange = function () {

if(xhr.readyState === xhr.DONE) {
  if (xhr. status === 200) {// successful request
    console.log(xhr.response);
    //capture this response using your data variable
    data.cats = xhr.response;
     
  } else {// request failed
      console.log(xhr.response);
  }    
 }
};
xhr.ontimeout = function(event){
console.log('request timeout!');
}
xhr.setRequestHeader('Content-Type','application/json');
xhr.send();