How to reinitialize Owl Carousel after ajax call?

前端 未结 4 1483
误落风尘
误落风尘 2020-12-06 15:47

I am trying to reinitialize owl carousel after a successful ajax call. The ajax call will change the data but the view should stay the same.I am having an issue where the vi

4条回答
  •  慢半拍i
    慢半拍i (楼主)
    2020-12-06 16:10

    This was my approach and it works with the version 2.2.1 :

    $.getJSON('testimonials.json', function(data) {
    
        var content = "";
            for(var i in data["items"]){
    
                 var text = data["items"][i].text;
                 var name = data["items"][i].name;
                 var position = data["items"][i].position;
    
                 content += text + name + position
            }
    
            // set the content inside the element
            $("#test_slider").html(content);
    
            // Now we can call the owlCarousel
            $('#test_slider').owlCarousel({
                dots: false,
                nav: true,
                loop: true,
                margin:30,
                smartSpeed: 700,
                items:1,
                autoplay:true,
            });
    });
    

    As for testimonials.json looks like this :

    {
      "items" :
      [
        {
          "text": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore Lorem ipsum dolor sit amet, consectetur adipiscing elit. Lorem Ipsum has been the Lorem Ipsum is simply dummy text. Lorem Ipsum is simply dummy text of the printing.",
          "name": "Maurice Pittmansss",
          "position": "CEO of ABS Ltd.1"
        },
        {
          "text": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore Lorem ipsum dolor sit amet, consectetur adipiscing elit. Lorem Ipsum has been the Lorem Ipsum is simply dummy text. Lorem Ipsum is simply dummy text of the printing.",
          "name": "Maurice Pittmanggg",
          "position": "CEO of ABS Ltd.2"
        },
        {
          "text": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore Lorem ipsum dolor sit amet, consectetur adipiscing elit. Lorem Ipsum has been the Lorem Ipsum is simply dummy text. Lorem Ipsum is simply dummy text of the printing.",
          "name": "Maurice Pittmannnn",
          "position": "CEO of ABS Ltd3."
        }
      ]
    }
    

提交回复
热议问题