博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Ajax学习二:异步请求
阅读量:6003 次
发布时间:2019-06-20

本文共 1285 字,大约阅读时间需要 4 分钟。

【1】http://www.ibm.com/developerworks/web/library/wa-ajaxintro2/index.html

1. web2.0? 什么是web1.0

具有完全不同请求响应模型传统web

  • web1.0 不支持异步请求
  • web2.0 支持异步请求

2. XMLHttpRequest属性和方法

  • open(): Sets up a new request to a server.
  • send(): Sends a request to a server.
  • abort(): Bails out of the current request.
  • readyState: Provides the current HTML ready state.
  • responseText: The text that the server sends back to respond to a request.

static javascript: 代码没有放在一个方法或者函数体内,在用户与页面交互之前运行


可以将创建XMLHttpRequest的代码放在函数里面,但是会有问题:如果你是在用户填入第14个文本框时执行Ajax代码,然后回复一个浏览器不支持的错误给用户,会导致一个非常差的体验,因为用户已经在这个页面花掉了10分钟的时间。所以还是建议使用static的代码。

 


 

ajax sandbox:  【2】http://www.cnblogs.com/ComeOn/archive/2008/01/30/1058942.html

AJAX中的沙箱安全模型主要指的是跨域脚本调用的问题。比如我们存在在中的脚本如果想访问 脚本是违反沙箱安全模型的。结果肯定会出错。


 

 

http ready state

  • 0: The request is uninitialized (before you've called open()).
  • 1: The request is set up, but hasn't been sent (before you've called send()).
  • 2: The request was sent and is being processed (you can usually get content headers from the response at this point).
  • 3: The request is being processed; often some partial data is available from the response, but the server hasn't finished with its response.
  • 4: The response is complete; you can get the server's response and use it.

 

 

转载于:https://www.cnblogs.com/linne/p/3265890.html

你可能感兴趣的文章
linux查杀病毒的几个思路
查看>>
宽带速度
查看>>
构建之法阅读笔记5
查看>>
Android判断网络连接状态
查看>>
leetcode_1033. Moving Stones Until Consecutive
查看>>
logback logback.xml常用配置详解(二)<appender>
查看>>
js常用的函数库
查看>>
Sqlserver 数据库安全
查看>>
netstat命令简单使用
查看>>
Python标示符命名规则
查看>>
SSL certificate problem unable to get local issuer certificate解决办法
查看>>
20145209 刘一阳 《网络对抗》实验四:恶意代码分析
查看>>
个人学期总结
查看>>
CodeForces 985E Pencils and Boxes
查看>>
为什么Elasticsearch查询变得这么慢了?
查看>>
node.js中使用http模块创建服务器和客户端
查看>>
Away3D基础教程(六):支持双面交互的PlaneGeometry
查看>>
(十五)Centos之安装jdk
查看>>
RISC-V: custom instruction and its simulation(转)
查看>>
HDU 5366 The mook jong
查看>>