我从mySQL数据库中提取了50条最新记录。每个都进入一个具有同位素并完美运作的DIV - DIV动画,重置等。
然后,使用AJAX使用OFFSET调用接下来的50条记录,新记录会加载到新的DIV中,但Isotope的类不会应用于它们(通过Web Inspector可以看到。)
设置:
index.php =在浏览器中加载时调用数据库,Isotope工作正常。 index.php(#update_newImages)上的链接会触发侦听器加载“load-ajax.php”。
load-ajax.php =只有SQL SELECT和PDO循环的外部页面。这些记录加载但没有应用同位素,因此存在问题。
来自index.php的代码
...database connection info and query code go here
$filter = ""; // appears in the echo'd DIV below, for filtering the ISOTOPE divs. Turned off til this injection problem is solved
//ISOTOPE SETTINGS, in <HEAD>
var $container = $('#theContent');
$container.isotope({
layoutMode : 'fitRows', //leave blank for default masonry
filter: '*',
animationOptions: {
duration: 750,
easing: 'linear',
queue: false,
}
});
in BODY:
<div id="theContent">
<?php
for($i=0; $links = $query_links->fetch(); $i++){
echo "<div class=\"".$filter." box\"><a href=\"#\" data-filter=\"." . $filter . "\" class=\"theCat " . $filter . "\">" . $links['ATtitle']."</a><br>" . "#" . $links['LID']."-
<a href=\"". $links['URL']."\" target=\"_blank\" class=\"theURL\">". $links['descr']."</a></div>";
}
?>
</div><!-- theContent -->
<script> // RIGHT BEFORE BODY TAG CLOSES
var offset_newImages = 0; // initial offset value
var newImages = document.getElementById('update_newImages'); // a link on the page
newImages.addEventListener('click', function() {
event.preventDefault();
offset_newImages += 50; // increments batches of records
$.get('load-ajax.php?loadDataType=newImages&offset='+offset_newImages, function(data) {
$("#theContent").hide().html(data).fadeIn(600);
//**EDIT**
alert('Load was performed.'); // callback on success, works - is this where the Isotope "appended" code would go?
}, false);
});
</script>
来自load-ajax.php的代码
...database connection info goes here
$offset = $_GET["offset"]; // from URL
$filter = ""; // for filtering the ISOTOPE divs, turned off til the injection problem is solved
for($i=0; $links = $query_links->fetch(); $i++){
$showList = "<div class=\"".$filter." box\"><a href=\"#\" data-filter=\"." . $filter . "\" class=\"theCat " . $filter . "\">" . $links['ATtitle']."</a><br>" . "#" . $links['LID']."-
<a href=\"". $links['URL']."\" target=\"_blank\" class=\"theURL\">". $links['descr']."</a></div>";
echo $showList; // this is where ISOTOPE is not applied after each AJAX injection
}
我在想有一个回拨解决方案,但我不确定下一步该做什么。
注意:我已经尝试过Paul Irish的Isotope +无限滚动,但是在我可以将无限滚动的分页机制从mySQL转换为JSON之前不能使用它。下一个项目。
编辑:我修改了 index.php ,内容如下。这个问题仍然存在,但我认为它几乎存在。 ajax正在工作,但是当Isotope开始使用时,它不会在新DIV上添加它的类。
<head>
<script type="text/javascript">
$(document).ready(function(){
//ISOTOPE SETTINGS
var $container = $('#container');
$container.isotope({
layoutMode : 'fitRows', //leave blank for default masonry
filter: '*',
animationOptions: {
duration: 750,
easing: 'linear',
queue: false,
}
});
});
</script>
在</body>
之前:
<script>
var offset_newImages = 0; // initial offset value
var newImages = document.getElementById('update_newImages'); // a link on the page
newImages.addEventListener('click', function() {
offset_newImages += 50;
$.ajax({
type: 'GET',
url: "load-ajax.php?offset="+offset_newImages,
success:function(data){
// alert(data); // works
$("#container").hide().html(data).fadeIn(600) // fades in the new recordset
$container.isotope('insert', data);
}
});
});
</script>
总而言之,新数据加载到DIV中 - 我可以看到它直到我以任何方式调整浏览器窗口的大小,这是Isotope开始使用其隐藏新DIV的地方。