Write example code for the map through database and ajax method
AJAX is the art of exchanging data with a server and updating parts of a web page without reloading the entire page. This article mainly introduces relevant information about writing example codes for maps through database and ajax methods. Friends in need can refer to
ajax tutorial
AJAX = Asynchronous JavaScript and XML.
AJAX is not a new programming language, but a new way of using existing standards.
AJAX is the art of exchanging data with a server and updating parts of a web page without reloading the entire page.
Client part: html, js, css code part:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <title></title> <meta charset="UTF-8"/> </head> <!--css样式部分--> <style type="text/css"> .content_map{ /*border:1px solid blue;*/ width:1349px; height:524px; float:left; margin-top:100px; } .content_map .mLeft{ border:none; border-top:1px solid #fb6c20; width:400px; margin-top:14px; float:left; margin-left:134px; } .content_map>span{ margin-left:20px; margin-right:20px; font-size:28px; font-family: "Microsoft Yahei"; /*font-weight: bold;*/ float:left; } .content_map .mRight{ float:left; border:none; border-top:1px solid #fb6c20; width:400px; margin-top:14px; } #maplist{ margin-top:50px; width:749px; height:524px; /*border:1px solid #fb6c20;*/ background: url("images/diru.png") no-repeat 0 0 ; background-size:contain; position: relative; float:left; } .mapShop img{ position:absolute; /*border:1px solid red;*/ } #map_right{ /*border:1px solid #fb6c20;*/ float:left; /*width:600px;*/ width:594px; height:524px; background-color: #f0f2fe; margin-top: 40px; } .shopMsg img{ width:450px; height:300px; margin-left:72px; margin-top:40px; } .shopMsg .pmname{ color:#000; font-size:20px; margin-top:30px; margin-left:72px; font-family:微软雅黑; } .shopMsg .address{ color:#000; font-size:20px; margin-top:30px; margin-left:72px; font-family:微软雅黑; } .shopMsg .phone{ color:#000; font-size:20px; margin-top:30px; margin-left:72px; font-family:微软雅黑; } </style> <body> <!--html部分--> <p class="content_map"> <!-- 标题--> <hr class="mLeft"/> <span>相关宠物医院</span> <hr class="mRight"/> <!-- 左边部分:地图--> <p id="maplist"> </p> <!-- 右边部分点击左边要添加的内容:以及最开始加入的信息--> <p id="map_right"> <p class="shopMsg"> <img src="images/w_map.png"/> <p class="pmname">宠物店名:Petjoy宠物社区</p> <p class="address">地址:长宁区机旋路1258号--1260号</p> <p class="phone">电话号码:(021)53018000</p> </p> </p> </p> <!--js代码部分--> <script type="text/javascript"> window.onload=function(){ getMap(); } // 向地图添加信息:ajax function getMap(){ //创建对象 var httpReq; if(window.XMLHttpRequest){ httpReq=new XMLHttpRequest(); }else{ httpReq=new ActiveXObject("Microsoft.XMLHTTP"); } var maplist=document.getElementById("maplist");//获取地图列表 maplist.innerHTML='';//清空地图里在html里面加的信息 // 定义回调函数,接收从数据库响应回来的数据。 // onreadystatechange():存储函数(或函数名)。每当readyState属性改变时,就会调用该函数 httpReq.onreadystatechange=function(){ if(httpReq.readyState==4&&httpReq.status==200){ var jsonobj=JSON.parse(httpReq.responseText); console.log(jsonobj.length); for (var i = 0; i< jsonobj.length;i++) { maplist.innerHTML+='<p class="mapShop">'+ '<img src="images/fi1.png" style="top:'+jsonobj[i].pmTop+"px"+';left:'+jsonobj[i].pmLeft+"px"+'"/>'+ '<p id="pmcity'+i+'" onclick="getMessage('+i+')" style="top:'+jsonobj[i].pmTop+"px"+';left:'+jsonobj[i].pmLeft+"px"+';position:absolute;padding-top:20px;'+'">' + jsonobj[i].pmCity + '</p>'+ '</p>'; } } } //发起请求(打开一个地址) httpReq.open("get", "adress.do", true); //发送,如果提交方式为get,发送为null;如果提交方式为post,哪send里写要发送的参数,没得的话,就写null httpReq.send(null); } //点击获取信息 function getMessage(a){ console.log("M----------1"); var httpReq; if(window.XMLHttpRequest){ httpReq=new XMLHttpRequest(); }else{ httpReq=new ActiveXObject("Microsoft.XMLHTTP"); } var map_right=document.getElementById("map_right"); map_right.innerHTML=''; httpReq.onreadystatechange=function(){ if(httpReq.readyState==4&&httpReq.status==200){ var jsonobj=JSON.parse(httpReq.responseText); console.log(jsonobj.length); for(var i=0;i<jsonobj.length;i++){ map_right.innerHTML+='<p class="shopMsg">'+ '<img src="images/'+jsonobj[i].pmImg+'"/>'+ '<p class="pmname">宠物店名:'+jsonobj[i].pmName+'</p>'+ '<p class="address">地址:'+jsonobj[i].pmAddress+'</p>'+ '<p class="phone">电话号码:'+jsonobj[i].pmPhone+'</p>'+ '</p>' } } } //发起请求 httpReq.open("get", "adressMsg.do?pmId="+a, true); //发送 httpReq.send(null); } </script> </body> </html>
Server part: app.js (a JavaScript):
var express=require("express");//引用express var mysql=require("mysql");//引用mysql var app=express();//执行express里的全局函数,返回一个express对象 app.configure(function(){ app.use(app.router);//路由,配置路由时,先执行,用户定义的拦截地址 app.use(express.static(__dirname+"/public"));//设置静态资源路径 app.use(express.errorHandler());//开发者模块,将错误显示在html上 }); app.get("/adress.do",function(req,res){ //console.log("d-----------1"); //建立数据库连接,建立桥梁 var myconn=mysql.createConnection({ host:"localhost", port:"3306", user:"root", password:"123456", database:"pet" }); //打开连接 myconn.connect(); var sql="SELECT * FROM petmap"; //console.log(sql); myconn.query(sql,[],function(err,data){ //console.log(err); //console.log(data); res.send(data); }); //关闭连接 myconn.end(); }); //城市点击响应 app.get("/adressMsg.do",function(req,res){ var pmId=req.query.pmId; console.log(pmId); //建立数据库连接,建立桥梁 var myconn=mysql.createConnection({ host:"localhost", port:"3306", user:"root", password:"123456", database:"pet" }); //打开连接 myconn.connect(); console.log("f------------1"); var sql="SELECT * FROM petmap WHERE pmId=?"; console.log(sql); var id=parseInt(pmId); myconn.query(sql,[id+1],function(err,data){ console.log(err); console.log(data); res.send(data); }); //关闭连接 myconn.end(); }); //监听端口号 app.listen(8888,function(){//监听 console.log("express监听成功!"); console.log(__dirname); });
Database mysql information:
/*创建数据库:pet*/ CREATE DATABASE pet; /*宠物店地图*/ CREATE TABLE petmap(/*宠物店*/ pmId INT AUTO_INCREMENT PRIMARY KEY,/*宠物店id*/ pmName NVARCHAR(60),/*宠物店名*/ pmCity NVARCHAR(20),/*宠物店所在城市*/ pmAddress NVARCHAR(100),/*宠物店所在详细地址*/ pmImg VARCHAR(60),/*宠物店图片*/ pmPhone VARCHAR(30),/*宠物店电话号码*/ pmTop FLOAT,/*宠物店位置上面*/ pmLeft FLOAT/*宠物店位置下面*/ ) /*插入信息*/ INSERT INTO petmap(pmName,pmCity,pmAddress,pmImg,pmPhone,pmTop,pmLeft) VALUES ('邛崃邛临美多宠物服务部','成都','成都市邛崃市长松路296号','map1.png','15202891690',360,320), ('谐和宠物医院','德阳','德阳市旌阳区珠江西路300号','map2.png','0838-6181255',320,350), ('天宁动物医院','西安','西安市新城区韩森路','map3.png','028-81836050',260,240), ('宠美康动物医院','乌鲁木齐','乌鲁木齐市天山区幸福路774号','map4.png','0991-2654158',210,170), ('绵阳康贝动物诊所','绵阳','绵阳市游仙区东津路5-2号','map5.png','0816-2987186',315,335), ('圣心动物医院','重庆','重庆市九龙坡区大公馆九龙大厦3-2','map6.png','023-68820999',360,380), ('吉祥宠物医院(油榨街店)','贵阳','贵阳市南明区油榨街花鸟市场宠物区','map7.png','0851-88275946',400,380), ('常德市武陵区动物医院','常德','常德市武陵区青年路478号','map8.png','0736-7236814',230,393), ('爱尔宠物','郑州','郑州市金水区金水东路3-6号','map9.png','0371-69193157',300,453), ('长沙市博旺宠物诊所','长沙','长沙市天心区西牌楼街41号附近','map10.png','0731-82329801',370,443), ('大嘴狗宠物医院','合肥','合肥市庐阳区北一环与肥西路交口向南','map11.png','0551-64286773',330,500), ('秦皇岛市宠物医院','秦皇岛','秦皇岛市海港区海阳路9号','map12.png','0335-3076769',165,540); INSERT INTO petmap(pmName,pmCity,pmAddress,pmImg,pmPhone,pmTop,pmLeft) VALUES ('乖乖宠宠物医院','天津','天津市河东区万东路77号(近8630医院)','map13.png','13820105131',195,510), ('北京宠物医院','北京','北京市西城区百万庄北里14号','map14.png','010-88377484',198,490), ('爱宠之家宠物医院','哈尔滨','哈尔滨市南岗区鼎新三道街37号','map15.png','0451-82516177',80,625); INSERT INTO petmap(pmName,pmCity,pmAddress,pmImg,pmPhone,pmTop,pmLeft) VALUES ('拉萨妙妙安心宠物诊所','西藏','拉萨市城关区纳金路城东工商1楼','map16.png','0891-6223291',360,170);
Final result:
The above is what I compiled for everyone. I hope it will be helpful to everyone in the future.
Related articles:
Ajax gets data through city name
AJAX request queue implementation
MVC meets ajax form validation after bootstrap
The above is the detailed content of Write example code for the map through database and ajax method. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Go language is an efficient, concise and easy-to-learn programming language. It is favored by developers because of its advantages in concurrent programming and network programming. In actual development, database operations are an indispensable part. This article will introduce how to use Go language to implement database addition, deletion, modification and query operations. In Go language, we usually use third-party libraries to operate databases, such as commonly used sql packages, gorm, etc. Here we take the sql package as an example to introduce how to implement the addition, deletion, modification and query operations of the database. Assume we are using a MySQL database.

Hibernate polymorphic mapping can map inherited classes to the database and provides the following mapping types: joined-subclass: Create a separate table for the subclass, including all columns of the parent class. table-per-class: Create a separate table for subclasses, containing only subclass-specific columns. union-subclass: similar to joined-subclass, but the parent class table unions all subclass columns.

Apple's latest releases of iOS18, iPadOS18 and macOS Sequoia systems have added an important feature to the Photos application, designed to help users easily recover photos and videos lost or damaged due to various reasons. The new feature introduces an album called "Recovered" in the Tools section of the Photos app that will automatically appear when a user has pictures or videos on their device that are not part of their photo library. The emergence of the "Recovered" album provides a solution for photos and videos lost due to database corruption, the camera application not saving to the photo library correctly, or a third-party application managing the photo library. Users only need a few simple steps

HTML cannot read the database directly, but it can be achieved through JavaScript and AJAX. The steps include establishing a database connection, sending a query, processing the response, and updating the page. This article provides a practical example of using JavaScript, AJAX and PHP to read data from a MySQL database, showing how to dynamically display query results in an HTML page. This example uses XMLHttpRequest to establish a database connection, send a query and process the response, thereby filling data into page elements and realizing the function of HTML reading the database.

How to use MySQLi to establish a database connection in PHP: Include MySQLi extension (require_once) Create connection function (functionconnect_to_db) Call connection function ($conn=connect_to_db()) Execute query ($result=$conn->query()) Close connection ( $conn->close())

Ajax (Asynchronous JavaScript and XML) allows adding dynamic content without reloading the page. Using PHP and Ajax, you can dynamically load a product list: HTML creates a page with a container element, and the Ajax request adds the data to that element after loading it. JavaScript uses Ajax to send a request to the server through XMLHttpRequest to obtain product data in JSON format from the server. PHP uses MySQL to query product data from the database and encode it into JSON format. JavaScript parses the JSON data and displays it in the page container. Clicking the button triggers an Ajax request to load the product list.

To handle database connection errors in PHP, you can use the following steps: Use mysqli_connect_errno() to obtain the error code. Use mysqli_connect_error() to get the error message. By capturing and logging these error messages, database connection issues can be easily identified and resolved, ensuring the smooth running of your application.

Build an autocomplete suggestion engine using PHP and Ajax: Server-side script: handles Ajax requests and returns suggestions (autocomplete.php). Client script: Send Ajax request and display suggestions (autocomplete.js). Practical case: Include script in HTML page and specify search-input element identifier.
