<script>
function ajax(options) {
options = options || {}
options.type = (options.type || "GET").toUpperCase()
options.dataType = options.dataType || 'json'
options.async = options.async || true
options.timeout=options.timeout||8000//超时处理,默认8s
var params = getParams(options.data)
var timeoutFlag=null
var xhr
var that=this
if (window.XMLHttpRequest) {
xhr = new XMLHttpRequest()
} else {
xhr = new ActiveXObject('Microsoft.XMLHTTP')
}
xhr.onreadystatechange = function() {
if(options.dataType === 'json'){
if (xhr.readyState == 4) {
window.clearTimeout(that.timeoutFlag)
var status = xhr.status
if (status >= 200 && status < 300) {
// 如果需要像 html 表单那样 POST 数据,请使用 setRequestHeader() 来添加 http 头。
options.success && options.success(xhr.responseText, xhr.responseXML)
} else {
options.fail && options.fail(status)
}
}
} else {
if (xmlHttp.readyState == 4 && xmlHttp.status == 200) {
window.clearTimeout(that.timeoutFlag)
var oScript = document.createElement('script')
document.body.appendChild(oScript)
var callbackname = 'ajaxCallBack'
oScript.src = options.url + "?" + params+'&callback='+callbackname
window['ajaxCallBack'] = function(data) {
options.success(data)
document.body.removeChild(oScript)
}
}
}
}
if (options.type == 'GET') {
xhr.open("GET", options.url + '?' + params, options.async)
xhr.send(null)
} else if (options.type == 'POST') {
xhr.open('POST', options.url, options.async)
if(options.contentType=="undefined"||options.contentType==null){
xhr.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded')
xhr.send(params)
}else{
xhr.setRequestHeader('Content-Type', options.contentType)
xhr.send(JSON.stringify(options.data))
}
}
this.timeoutFlag=window.setTimeout(function(){//计时器,超时后处理
window.clearTimeout(that.timeoutFlag)
//options.fail("timeout")
xhr.abort()
}.bind(this),options.timeout)
}
function getParams(data) {
var arr = []
for (var param in data) {
arr.push(encodeURIComponent(param) + '=' + encodeURIComponent(data[param]))
}
return arr.join('&')
}
</script>
// 使用
<script>
ajax({
url: "https://xxx.xxx.xxx.xxx/router/rest", //请求地址
type: 'GET', //请求方式
async:true,//同步异步设置
timeout:8000,//超时设置
data: {
userName:$("#username").val(),
phoneNumber:$("#userphone").val(),
orderType:'8',
requirementDetail:'',
method:'homedecapi.decOrder.insertDecOrder',
orderSource:'无忧居官网PC'
}, //请求参数
success: function(response, xml) {
if(JSON.parse(response).decOrder_insertDecOrder_response){
// alert("预约成功")
$("#mypopup").css('display','block')
}else{
alert("预约失败")
}
},
fail: function(status) {
console.log('状态码为' + status) // 此处为请求失败后的回调
}
})
</script>
==========================================js 中读取JSON的方法探讨
js读取JSON的方法我接触到的有两种:
方法一:函数构造定义法返回
var strJSON = "{name:'json name'}"//得到的JSON
var obj = new Function("return" + strJSON)()//转换后的JSON对象
alert(obj.name)//json name
方法二:js中著名的eval函数
var strJSON = "{name:'json name'}"//得到的JSON
var obj = eval( "(" + strJSON + ")" )//转换后的JSON对象
alert(obj.name)//json name
第二种方法需要注意的是,对象表达式{'name':'json name'}必须用“()”扩住,否则
var strJSON = "{name:'json name'}"
var obj = eval(strJSON)
alert(obj.constructor)//String 构造函数
alert(obj.name)//undefine
必须把对象表达式扩起来eval执行才能生成一个匿名对象!
有两种方法,一种是$.ajax(option)方法,一种是$.getJSON()方法。实例:
一、数据集所在jsp页面out.jsp,代码如下
<%@page contentType="text/plaincharset=UTF-8"
language="java"
import="java.io.*,java.net.*,java.util.*"
buffer="8kb"
session="false"
autoFlush="true"
%>
<%
String jsonData="{data:[{id:200901,name:'name1'},{id:200902,name:'name2'},{id:200903,name:'姓名3'},{id:200904,name:'姓名4'},{id:200905,name:'姓名5'}]}"
//out.clear()
out.write(jsonData)
%>
二、js处理页面
(1)
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "">
<html xmlns="">
<head>
<title>test</title>
<meta http-equiv="Content-Type" content="text/htmlcharset=UTF-8"/>
<script type="text/javascript" language="javascript" src="js/jquery.js"></script>
<script type="text/javascript">
function getOut(){
var s=''
$.ajax({
type:'get',//请求方式
url:'out.jsp?id='+Math.random(), // AJAX HTTP请求接口
data:'',//提交到服务器接口的参数 比如'{cid:0405}',结果为out.jsp?cid=0405格式
dataType:'json',//请求类型为json, 更多见jquery doc文档
timeout:7000,//请求超时后停止请求
success: function(json){
var d=json.data
$.each(d,function(i){
s+=('<p>id:'+d[i].id +' | name:'+d[i].name+'</p><hr/>')
})
$('#out').html(s)}})
}
</script>
</head>
<body style="margin:20pxtext-align:centerbackground:#E5E5E5">
<input type="text" name="getdata" onclick="getOut()"/>
<div id="out">
</div>
</body>
</html>
(2)
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "">
<html xmlns="">
<%@ page language="java" contentType="text/htmlcharset=utf-8"%>
<head>
<script type="text/javascript" src="js/jquery-1.3.2.min.js"></script>
<script>
function showStudent(){
var s=''
$.getJSON("out.jsp?id="+Math.random(),function(json){
var d=json.data
for(var i=0i<d.lengthi++){
s+=('<p>id:'+d[i].id +' | name:'+d[i].name+'</p><hr/>')
}
$('#content').html(s)
})
}
</script>
</head>
<body>
<input type="button" value="获取学院信息" onclick="showStudent()" />
<div id="content"></div>
</body>
</html>
总结:
(1)有时候总是出现错误,原因在于——json数据格式有问题,前端$.getJSON()方法并没有什么错误。
(2)相对来说,$ajax(option)方法使用比较灵活,可以用在比较复杂的情况。