Web前端-Ajax基础技术(上)

Web前端-Ajax基础技术(上)
ajax是浏览器提供一套的api,用于向服务器发出请求,接受服务端返回的响应,通过javascript调用,实现通过代码控制请求与响应,实现网络编程。
ajax发送请求:
<!DOCTYPE html>
<html lang="en">
<head>
<meat charset="UTF-8">
<title>Ajax</title>
</head>
<body>
<script>
// ajax是一套api核心提供的类型:
var xhr = new XMLHttpRequest();
xhr.open();
xhr.send();
xhr.onreadystatechange = function(){
if(this.readyState != 4) return
// 获取响应的内容
console.log(this.responseText);
}
</script>
</body>
</html>
<script>
var xhr = new XMLHttpRequest()
console.log(xhr.readyState);
xhr.open('GET', 'xxx.php')
console.log(xhr.readyState); // 1 初始化 请求代理对象
xhr.send()
console.log(xhr.readyState); // 1
xhr.addEventListener('readystatechange', function(){
// if(this.readyState != 4) return
// console.log(this.readyState);
})
// ajax创建一个XMLHttpRequest类型的对象,相当于打开一个浏览器
var xhr = new XMLHttpRequest()
// 打开一个网址之间的连接
xhr.open('GET','##.php')
// 通过连接发送一次请求
xhr.send(null)
// 指定xhr状态变化事件处理函数
xhr.onreadystatechange = function() {
// 通过xhr 的readyState判断请求的响应
if(this.readyState === 4){
console.log(this);
}
}
<script>
var xhr = new XMLHttpRequest();
xhr.open('GET', 'xxx.php')
xhr.send(null)
xhr.onload=function(){
console.log(this.readyState)
console.log(this.responseText)
}
</script>
http协议:
<script>
var xhr = new XMLHttpRequest()
xhr.open('GET', '/##.php') // 设置请求行
// xhr.setRequestHeader('HH', 'DA') // 设置一个请求头
xhr.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
xhr.send('key=value&key1=value1') // 设置请求体
<body>
<form action="##.php" method="post">
<input type="text" name="name" id="">
<button>提交</button>
</form>
</body>
// http
// 设置请求报文的请求行
xhr.open('GET', './###.php')
// 设置请求头
xhr.setRequestHeader('Accept', 'text/plain')
// 设置请求体
xhr.send(null)
xhr.onreadystateChange = function() {
if(this.readyState === 4) {
// 获取响应状态码
console.log(this.status)
// 获取响应状态描述
console.log(this.statusText)
// 获取响应头信息
// 获取指定响应头
console.log(this.getResponseHeader('Content-Type'))
// 获取全部响应头
console.log(this.getAllResponseHeader())
// 获取响应体
// 获取响应文本形式
console.log(this.responseText)
// 获取xml形式
console.log(this.responseXML)
}
}
进行初始化,建立连接,接收响应,响应体加载,加载成功!
// get请求
var xhr = new XMLHttpRequest()
xhr.open('GET', '.##.php?id=1')
// 一般get请求无需设置响应体
xhr.send(null);
xhr.onreadystatechange = function(){
if(this.readyState === 4) {
console.log(this.responseText);
}
}
// post
if(empty($_GE['id])) {
$json = json_encode($data);
echo $json;
}else{
foreach($data as $item) {
if($item['id'] != $_GET['id'] continue;
$json = json_encode($data);
echo $json;
}
}
异步的 JavaScript 和 XML
AJAX = Asynchronous JavaScript and XML
用于创建快速动态网页的技术
XMLHttpRequest 对象
var xhr;
if (window.XMLHttpRequest){
xhr=new XMLHttpRequest();
}
else{
xhr=new ActiveXObject("Microsoft.XMLHTTP");
}
向服务器发送请求
xmlhttp.open("GET","123.txt",true);
xmlhttp.send();
请求类型,为get和post,url文件在服务器上的位置,true异步和false同步。
xhr.open("POST","###.asp",true);
xhr.setRequestHeader("Content-type","application/x-www-form-urlencoded");
xhr.send("name=da&age=12");
onreadystatechange 事件
XMLHttpRequest 的状态信息,从0到4变化,0为请求未初始化,1为建立连接成功,2为请求已接收,3为请求处理中,4为请求完成。
xhr.onreadystatechange=function() {
if (xhr.readyState==4 && xhr.status==200) {
}
}
<ul id="list"></ul>
var listElement = document.getElementById('list');
var xhr = new XMLHttpRequest();
xhr.open('GET', '###。php?id=2');
xhr.send(null)
xhr.onreadystatechange = function() {
if(this.readyState != 4) return
// console.log(this.responseText)
var data = JSON.parse(this.responseText)
for(var i = 0; i<data.length; i++) {
var liElement = document.createElement('li');
liElement.innerHTML = data[i].name;
listElement.appendChild(liElement);
}
}
xhr.onreadystatechange = function() {
if(this.readyState != 4) return
var data = JSON.parse(this.responseText)
for(var i = 0; i<data.length; i++){
var liElement = document.createElement('li')
liElement.innerHTML = data[i].name;
liElement.id=data[i].id
listElement.appendChild(liElement);
liElement.addEventListener('click', function() {
var xhr1 = new XMLHttpRequest();
xhr1.open('GET', '###.php?id=' + this.id)
xhr1.send()
xhr1.onreadystatechange = function() {
if(this.readyState != 4) return
var obj = JSON.parse(this.responseText)
alert(obj.age)
}
}
}
}
onreadystatechange事件
readyState返回当前请求的状态
responseBody将回应信息文体
status返回当前请求的状态码
statusText返回当前请求的响应的状态
abort取消当前请求
getAllResponseHeaders获取响应指定的http头
open创建一个新的http请求
send发送请求到http服务器并接收回应
setRequestHeader指定请求头

<?php
if(empty($_POST['username']) || empty($_POST['password'])) {
exit('请输入用户名和密码');
}
// 校验
$username = $_POST['username'];
$password = $_POST['password'];
if($username === 'admin' && $password === '123') {
exit('成功');
}
exit('失败');
?>
var btn = document.getElementById('btn');
// 获取元素
var txtUsername = document.getElementById('username');
var textPassword = document.getElementById('password');
btn.onclick = function() {
var username = txtUsername.value;
var password = txtPassword.value;
var xhr = new XMLHttpRequest();
xhr.open('POST', '##.php');
xhr.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded')
// xhr.send('username=' + username + '&password=' + password)
xhr.send(`username=${username}&password=${password}`);
// 界面
xhr.onreadystatechange = function() {
if(this.readyState != 4) return
console.log(this.responseText);
}
}
// jquery中的ajax
$.ajax({
type: 'GET',
url: "###.php?id="+$('#id').val(),
dataType: "json"
success: function(data){
$("jq").html();
}else{
$("jq").html();
},
error: function(jq) {
alert();
}
})
$.ajax({
type: "POST",
url: "ajax.php",
dataType: "json",
data: {"username": "admin","password": 123},
success: function(msg) {
console.log(msg)
},
error: function() {
console.log("error")
}
})
function creathttprequest(){
if(window.XMLHttpRequest)
var xml=new XMLHttpRequest();
else
var xml=ActiveXObject("Miscrosoft.XMLHTTP");
return xml;
}
function addAjax() {
var xml = createhttprequest();
xml.open("POST","123.php",false);
xml.setRequestHeader("Content-Type","application/x-www-form-urlencoded");
xml.send(url);
if( xml.readyState == 4 && xml.status == 200 ) {
alert(xml.responseText);
}
}
响应数据
<?php
header('Content-Type: application/xml');
?>
<?xml version="1.0" encoding="utf-8"?>
<person>
<name>dashu</name>
<age>16</age>
<gender>男</gender>
</person>
<script>
var xhr = new XMLHttpRequest()
xhr.open('GET', '###.php')
xhr.send()
xhr.onreadystatechange = function() {
if(this.readyState != 4) return
// console.log(this.responseXML)
// console.log(this.responseXML.documentElement.getElementsByTagName('name')[0])
// console.log(this.responseXML.documentElement.children[0].innerHTML)
}
如何解析服务端的数据:
<table>
<tbody id="content"></tbody>
</table>
<script>
var xhr = new XMLHttpRequest()
xhr.open('GET', '###.php')
xhr.send()
xhr.onreadystatechange = function() {
if(this.readyState != 4) return
var res = JSON.parse(this.responseText);
var data = res.data
for(var i = 0; i<data.length; i++) {
var tr = document.createElement("tr");
var td = document.createElement("td");
td.innerHTML = data[i].id;
}
}
</script>
兼容:
var xhr = window.XMLHttpRequest ? new XMLHttpRequest() : new ActiveXObject('Microsoft.XMLHTTP');
模板:
https//aui.github.io/art-template/
面试手写:
var xhr = new XMLHttpRequest();
xhr.open('GET', '###.php');
xhr.send(null);
xhr.onreadystatechange = function() {
if(this.readyState === 4){
console.log(this);
}
}
实例:
<script>
function add(){
var xhr;
if (window.XMLHttpRequest){
xhr=new XMLHttpRequest();
}else{
xhr=new ActiveXObject("Microsoft.XMLHTTP");
}
xhr.onreadystatechange=function(){
if (xhr.readyState==4 && xhr.status==200)
{
document.getElementById("div").innerHTML=xhr.responseText;
}
}
xmlhttp.open("GET","/info.txt",true);
xmlhttp.send();
}
</script>

实例:
<script>
function change(str){
if(str == ""){
document.getElementById("txt").innerHTML="";
return;
}
if(window.XMLHttpRequest){
xhr=new XMLHttpRequest();
}else{
xhr=new ActiveXObject("Microsoft.XMLHTTP");
}
xhr.onreadystatechange=function(){
if (xhr.readyState==4 && xhr.status==200){
document.getElementById("txt").innerHTML=xhr.responseText;
}
}
xhr.open('GET','###.php?id=' + str, true);
xhr.send();
}
</script>
<form>
<select name="users" onchange="change(this.value">
<option value=""></option>
<option value="1"></option>
<option value="2"></option>
</select>
</form>
<div id="txt"></div>
//php
$id = isset($_GET["id"]) ? intval($_GET["id"]) : '';
$con = mysqli_connect('localhost','root','123456');
if (!$con)
{
die('连接失败: ' . mysqli_error($con));
}
// 选择数据库
mysqli_select_db($con,"test");
// 设置编码
mysqli_set_charset($con, "utf8");
$sql="SELECT * FROM Websites WHERE id = '".$id."'";
$result = mysqli_query($con,$sql);
结言
好了,欢迎在留言区留言,与大家分享你的经验和心得。
感谢你学习今天的内容,如果你觉得这篇文章对你有帮助的话,也欢迎把它分享给更多的朋友,感谢。
作者简介
达叔,理工男,简书作者&全栈工程师,感性理性兼备的写作者,个人独立开发者,我相信你也可以!阅读他的文章,会上瘾!,帮你成为更好的自己。长按下方二维码可关注,欢迎分享,置顶尤佳。
Web前端-Ajax基础技术(上)的更多相关文章
- Web前端-Ajax基础技术(下)
Web前端-Ajax基础技术(下) 你要明白ajax是什么,怎么使用? ajax,web程序是将信息放入公共的服务器,让所有网络用户可以通过浏览器进行访问. 浏览器发送请求,获取服务器的数据: 地址栏 ...
- 网络统计学与web前端开发基础技术
网络统计学与web前端开发基础技术 学习web前端开发基础技术(网页设计)需要了解:HTML.CSS.JavaScript三种语言.下面我们就来了解一下这三门技术在网页设计中的用途: HTML是网页内 ...
- Web前端-JavaScript基础教程上
Web前端-JavaScript基础教程 将放入菜单栏中,便于阅读! JavaScript是web前端开发的编程语言,大多数网站都使用到了JavaScript,所以我们要进行学习,JavaScript ...
- 学习web前端开发基础技术需要掌握:HTML、CSS、JavaScript语言
1. HTML是网页内容的载体.内容就是网页制作者放在页面上想要让用户浏览的信息,可以包含文字.图片.视频等. 2. CSS样式是表现.就像网页的外衣.比如,标题字体.颜色变化,或为标题加入背景图片. ...
- Web前端开发基础 第一天(Html和CSS)
学习web前端开发基础技术需要掌握:HTML.CSS.JavaScript语言.下面我们就来了解下这三门技术都是用来实现什么的: 1. HTML是网页内容的载体.内容就是网页制作者放在页面上想要让用户 ...
- Web前端之基础知识
学习web前端开发基础技术须要掌握:HTML.CSS.Javascript 1.HTML是网页内容的载体 内容就是网页制作者放在页面上想要让用户浏览的信息,能够包括文字.图片.视频等. 2.CSS样式 ...
- web前端各大技术都能实现什么功能
web前端各大技术都能实现什么功能 以下是孜然为你总结的web前端开发你必须要一项一项掌握的技术:Html.css.ajax.jquery.extjs.JavaScript,今天为你详细解读他们各自都 ...
- Web前端-JavaScript基础教程下
Web前端-JavaScript基础教程下 <script>有6个属性: async对外部脚本有效,可以用来异步操作,下载东西,不妨碍其他操作. charset为src属性指定字符集. d ...
- 最适合2018年自学的web前端零基础系统学习视频+资料
这份资料整理花了近7天,如果感觉有用,可以分享给更有需要的人. 在看接下的介绍前,我先说一下整理这份资料的初衷: 我的初衷是想帮助在这个行业发展的朋友和童鞋们,在论坛博客等地方少花些时间找资料,把有限 ...
随机推荐
- 从壹开始前后端 [vue后台] 之一 || 权限后台系统 1.0 正式上线
缘起 哈喽各位小伙伴周三好,春节已经过去好多天了,群里小伙伴也各种催搞了,新年也接了新项目,比较忙,不过还是终于赶上这个二月的尾巴写了这篇文章,也把 vue 权限后台上线了(项目地址:http://1 ...
- Vue 进阶之路(五)
之前的文章我们说了一下 vue 的样式绑定,这篇文章来介绍一下 vue 中的条件渲染,先看下面的代码: <!DOCTYPE html> <html lang="en&quo ...
- 扒一扒.NET Core的环境配置提供程序
很久之前,在玩Docker的时候顺便扒了扒,最近,终于下定决心花了些时间整理并成文,希望能够给大家一些帮助. 目录 .NET Core中的配置 ASP.NET Core中的配置 扒一扒环境变量提供程序 ...
- 包装类及 LeetCode 每日一题
1.包装类与创建对象 Java 为8大数据类型都提供了相应的包装类,并提供属性和方法,更方便的操作基本数据类型.包装类位于java.lang包中. 对于这几种类型的基本数据,都有相似的方法实现基本数据 ...
- 实例分析Vue.js中 computed和methods不同机制
在vue.js中,有methods和computed两种方式来动态当作方法来用的 1.首先最明显的不同 就是调用的时候,methods要加上() 2.我们可以使用 methods 来替代 comput ...
- Android 插件化技术窥探
在Android 插件化技术中(宿主app和插件app设置相同的sharedUserId),动态加载apk有两种方式: 一种是将资源主题包的apk安装到手机上再读取apk内的资源,这种方式的原理是将宿 ...
- 对比 Git 与 SVN,这篇讲的很易懂
---恢复内容开始--- 欢迎大家前往腾讯云+社区,获取更多腾讯海量技术实践干货哦~ 本文由腾讯工蜂发表于云+社区专栏 导语 本文从 Git 与 SVN 的对比入手,介绍如何通过 Git-SVN 开始 ...
- SqlServer_查看SQLServer版本信息
方法一: 执行sql语句 SELECT @@VERSION 方法二: 连接SQL Server Management Studio利用Object Explorer显示的主要版本号信息,显示当前实例产 ...
- Gaussian Mixture Models and the EM algorithm汇总
Gaussian Mixture Models and the EM algorithm汇总 作者:凯鲁嘎吉 - 博客园 http://www.cnblogs.com/kailugaji/ 1. 漫谈 ...
- 以Windows服务方式运行.NET Core程序
在之前一篇博客<以Windows服务方式运行ASP.NET Core程序>中我讲述了如何把ASP.NET Core程序作为Windows服务运行的方法,而今,我们又遇到了新的问题,那就是: ...