我正在将JSON数据中的文章加载到数组中。当您单击特定帖子时,它会根据数组中的postID /位置加载相应的文章,然后加载滑块。
我想将数组中的下几篇文章发布到滑块中的下几张幻灯片中。我试图这样做并附上我所做的一些片段。
如果您还需要更多信息,请与我们联系 -
代码 -
var slideCount = 1;
$('.swiper-slide:nth-child(1)').html(articleArray[(pageNumber - 1)][postID].content);
$.each(articleArray[0], function(i) {
slideCount++;
//FOR some reason, this if statement skips slides. If you click on the first article, it will on append to slide 3 onwards, if you click on article two, it only appends to article 4 onwards
if(i > postID){
articleContent = articleArray[(pageNumber - 1)][i].content;
}
console.log(slideCount);
$('.swiper-slide:nth-child(' + slideCount + ')').html(articleContent);
});

<script src="https://cdnjs.cloudflare.com/ajax/libs/Swiper/3.4.2/js/swiper.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
&#13;