Heim > Artikel > Web-Frontend > Ajax- und MySQL-Dateninteraktion zum Erstellen einer Message-Board-Funktion
Dieser Artikel stellt hauptsächlich die Ajax- und MySQL-Dateninteraktion im Detail vor, um die Message-Board-Funktion zu realisieren. Es hat einen gewissen Referenzwert.
Ich habe kürzlich eine kleine Demo erstellt, die die Dateninteraktion implementiert zwischen Ajax und MySQL. Der js-Teil verwendet jq, das Backend verwendet PHP und die Datenbank ist MySQL. Ich werde später eine Node+Mongodb-Version erstellen.
Ich werde nicht näher auf die Verwendung und Installation von MySQL eingehen. Ich integriere Baidu xampp, den Apache-Server und die MySQL-Datenbank selbst, was sehr einfach zu verwenden ist.
Öffnen Sie zuerst den Server und die Datenbank. Ich habe hier zuerst eine „elf“-Datenbank erstellt und dann eine Tabelle namens Microblog erstellt (bitte beachten Sie: Ich verwende hier eine höhere Version von MySQL, die PHP zum Verlinken verwendet Die Datenbank. Alle Methoden verwenden mysqli_. Wenn die Version zu niedrig ist, verwenden Sie bitte die mysql_-Methode und ändern Sie den Code selbst.)
Das Folgende ist der Codeteil:
HTML-Seite und JS-Teil:
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>微博留言板</title> <style type="text/css"> *{ margin: 0; padding: 0; } #box{ width: 600px; /*height: 500px;*/ border: 2px solid rgb(85,85,85); border-radius: 15px; margin: 50px auto; padding: 20px 10px 15px; background-color: rgb(85,85,85); } #content{ display: block; resize: none; width: 550px; height: 200px; margin: 0 auto; border: 2px solid rgb(225,225,225); border-radius: 10px; text-align: center; font-size: 30px; background-color: rgb(225,225,225); } #content:focus{ outline: none; border: 2px solid rgb(225,225,225); box-shadow: 0 0 15px rgb(225,225,225); } #btn{ border: 2px solid rgb(255,204,0); width: 80px; height: 40px; border-radius: 5px; margin-top: 30px; font-size: 17px; cursor: pointer; outline: none; background-color: rgb(255,204,0); } .list{ list-style: none; background-color: rgb(249,249,249); margin-top: 20px; } .list>li{ padding: 20px 10px 10px; border-bottom: 2px solid rgb(68,68,68); font-size: 20px; color: rgb(200,214,225); position: relative; word-break: break-word; word-wrap: break-word; background-color: rgb(85,85,85); } .list>li>.control{ position: absolute; bottom: 3px; right: 5px; font-size: 14px; } .list>li>p{ margin-bottom: 25px; } .control span,.control em{ display: inline-block; margin-right: 15px; } .control em{ color: darkblue; cursor: pointer; } a{ text-decoration: none; color: darkred; } #page>a{ display:inline-block; width: 40px; height: 30px; margin-top: 10px; text-align: center; line-height: 30px; font-size: 20px; border-radius: 5px; color: white; background-color: rgb(51,21,70); } #head{ color: rgb(200,214,225); font-size: 30px; height: 50px; border-bottom: 2px solid rgb(68,68,68); margin-bottom: 20px; } </style> </head> <body> <p id="box"> <p id="head"> 留言板 </p> <p id="fill_in"> <textarea id="content"></textarea> <button id="btn">提交留言</button> </p> <!--留言列表--> <p id="message_text"> <ul class="list"> </ul> </p> <!--分页--> <p id="page"> <a href="javasript:void(0)" rel="external nofollow" rel="external nofollow" rel="external nofollow" >1</a> <a href="javasript:void(0)" rel="external nofollow" rel="external nofollow" rel="external nofollow" >2</a> </p> </p> </body> <script src="Jq/jquery-3.1.1.min.js"> </html>
Codeanzeige Noch nicht fertig, hier ist ein Teil des PHP-Codes.
Fahren Sie mit Teil 01 fort, der Ajax-Anfrage von jq:
<script type="text/javascript"> $(function(){ $("#btn").on("click",function(){ if ($("#content").val() == "") { alert("~~客官,说一句再走呗~~"); return; } else{ $.ajax({ type:"get", url:"http://localhost/phpStudy/ajax03/message.php", async:true, dataType:"json", data:{ content:$("#content").val(), act:"add" }, success:function(data){ // var result = JSON.parse(data); if (data.error==0) { createLi(data.id,$("#content").val(),data.time); } else{ alert(data.msg); } } }); } }); //创建节点 function createLi(id,content,time){ var html = $('<li><p>'+content+'</p><p class="control"><span>时间:'+time+'</span>顶:<em>0</em>踩:<em>0</em><a class="remove" href="javasript:void(0)" rel="external nofollow" rel="external nofollow" rel="external nofollow" >删除</a></p></li>'); $(".list").prepend(html); var h = html.height(); html.height(0); html.stop().animate({ height:h },300); //删除 html.find(".remove").on("click",function(){ html.stop().animate({ height:0 },300,function(){ html.remove(); }) }); } }) </script>
Dieser Teil ist der PHP-Code-Teil:
<?php header("Content-type:text/html;charset=utf8"); date_default_timezone_set("PRC"); //链接数据库 $link = mysqli_connect("localhost", "root", "", "eleven"); //设置数据库编码格式 mysqli_query($link, "set names utf8"); ?>
Hinweis: Ich habe diesen Teil als öffentlichen Code geschrieben, weil ich lerne, andere Dinge zu tun Der folgende Code wird also aufgerufen:
include_once "comment.php";
. Diese Zeile bezieht sich auf andere Codes, die ich für alle zusammengestellt habe die Zukunft.
Verwandte Artikel:
Ajax-Antwort auf JSON-String- und JSON-Array-Beispiele (grafisches Tutorial) Ajax-Synchronisierung und asynchrone Probleme Kurze Analyse und LösungenZwei Methoden für Ajax, um redundante Aktualisierungen zu lösenDas obige ist der detaillierte Inhalt vonAjax- und MySQL-Dateninteraktion zum Erstellen einer Message-Board-Funktion. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!