Mysql
 sql >> Datenbank >  >> RDS >> Mysql

Dynamisches Laden von Daten auf div scroll mit php, mysql, jquery und ajax

In diesem Tutorial zeige ich Ihnen, wie Sie mit PHP, MySQL, Jquery und Ajax dynamisch Daten auf Div Scroll laden können, oder Sie können sagen, dass Facebook wie Paging ist. Wenn jemals ein Benutzer am Ende des Div oder der Seite steht, werden neue Daten angezeigt sofort geladen.

In diesem Beispiel habe ich eine Datenbank mit Ländern und ich muss alle Länderlisten innerhalb des Div anzeigen. Wenn also ein Benutzer das Länder-Div scrollt, wird die nächste Länderliste geladen.

Erstellen Sie zunächst eine Länderdatenbank.

CREATE TABLE IF NOT EXISTS `countries` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`sortname` varchar(3) NOT NULL,
`name` varchar(150) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=247 ;


Erstellen Sie eine PHP-Datei, um eine Verbindung mit der Datenbank herzustellen, und rufen Sie die Länderliste gemäß dem Limit ab.

<?php
$hostname = "localhost";
$username = "root";
$password = "root";
$dbname = "location";
$limitStart = $_POST['limitStart'];
$limitCount = 50; // Set how much data you have to fetch on each request
	if(isset($limitStart ) || !empty($limitStart)) {
	$con = mysqli_connect($hostname, $username, $password, $dbname);
	$query = "SELECT id, name FROM countries ORDER BY name limit $limitStart, $limitCount";
	$result = mysqli_query($con, $query);
	$res = array();
		while($resultSet = mysqli_fetch_assoc($result)) {
		$res[$resultSet['id']] = $resultSet['name'];
		}
	echo json_encode($res);
	}
?>




Erstellen Sie nun eine HTML-Datei und fügen Sie etwas CSS und HTML ein

<style>
.country { height: 300px; overflow: auto; width: 500px; }
.loading { color: red; }
li {font-size:24px;}
#loading { display:none; color:red; font-size:30px; }
</style>
<div class="country">
    <ul id="results"></ul>
</div>
 <span id="loading">Loading Please wait...</span>





Danach schreiben Sie jquery, um eine Anfrage an den Server auf div scroll zu senden

<script>
$(function() {
   loadResults(0);
    $('.country').scroll(function() {
      if($("#loading").css('display') == 'none') {
        if($(this).scrollTop() + $(this).innerHeight() >= $(this)[0].scrollHeight) {
           var limitStart = $("#results li").length;
           loadResults(limitStart); 
        }
      }
	}); 
 
function loadResults(limitStart) {
	$("#loading").show();
    $.ajax({
        url: "request.php",
        type: "post",
        dataType: "json",
        data: {
            limitStart: limitStart
        },
        success: function(data) {
               $.each(data, function(index, value) {
               $("#results").append("<li id='"+index+"'>"+value+"</li>");
             });
             $("#loading").hide();     
        }
    });
};
});
</script>

Jetzt wird Ihre endgültige index.html-Datei

index.html

<style>
.country { height: 300px; overflow: auto; width: 500px; }
.loading { color: red; }
li {font-size:24px;}
#loading { display:none; color:red; font-size:30px; }
</style>
<div class="country">
    <ul id="results"></ul>
</div>
 <span id="loading">Loading Please wait...</span>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script>
$(function() {
   loadResults(0);
    $('.country').scroll(function() {
      if($("#loading").css('display') == 'none') {
        if($(this).scrollTop() + $(this).innerHeight() >= $(this)[0].scrollHeight) {
           var limitStart = $("#results li").length;
           loadResults(limitStart); 
        }
      }
	}); 
 
function loadResults(limitStart) {
	$("#loading").show();
    $.ajax({
        url: "request.php",
        type: "post",
        dataType: "json",
        data: {
            limitStart: limitStart
        },
        success: function(data) {
               $.each(data, function(index, value) {
               $("#results").append("<li id='"+index+"'>"+value+"</li>");
             });
             $("#loading").hide();     
        }
    });
};
});
</script>

Sehen Sie sich die Live-Demo an und laden Sie den Quellcode herunter.

DEMO HERUNTERLADEN

Wenn Ihnen dieser Beitrag gefällt, vergessen Sie bitte nicht, mein öffentliches Notizbuch für weitere nützliche Dinge zu abonnieren