Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
951 views
in Technique[技术] by (71.8m points)

javascript - Slide my card when I get the data using fetch method

I want to slide my card using carousel but when I apply the carousel class I get the blank output

I create the carousel file where I mention the slide duration and here I use a fetch method using api.

Is there way to apply the 'CSS' inside the fetch method ?

$('.owl-carousel4').owlCarousel({
  loop: true,
  nav: false,
  dots: false,
  autoplay: true,
  autoplayTimeout: 8000,
  autoplaySpeed: 5600,
  responsive: {
    0: {
      items: 1
    },
    700: {
      items: 3
    },
    1300: {
      items: 4
    }
  }
})


function fetchdata() {
  fetch('https://onlinemanufacturing.in//common/public/getAllVerifiedRequests').then(response => {
      if (!response.ok) {
        throw Error("ERROR");
      }
      return response.json();
    })
    .then(data => {
      console.log(data);
      const html = data.map(request => {
        return `
            <div id="box" class="box">
                <div class="content">
                <h2> ${request.title}</h2>
                <li> Status: ${request.status}</li>
                <li> Category: ${request.categoriesStr}</li>
                <li> Quantity: ${request.quantity}</li>
            </div>
            </div>
        `;
      }).join('')
      console.log(html);
      document.querySelector("#app").insertAdjacentHTML("afterbegin", html);
    })
    .catch(error => {
      console.log(error);
    });
}
fetchdata();
<div class="container-fluid" style="margin-top: 30px;">
  <div class="section-title">
    <h2>Open Leads</h2>
  </div>
  <div class="row">
    <div id="owl-demo" class=" owl-carousel owl-carousel4 owl-theme">
      <div class="col-12 mt-3">
        <div id="app" class="app">
        </div>
      </div>
    </div>
  </div>
</div>

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
等待大神答复

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...