Ajax请求POST方法的封装
Posted 晓霜
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Ajax请求POST方法的封装相关的知识,希望对你有一定的参考价值。
function post(url, options, callback){ //定义post函数
if(XMLHttpRequest){
var xhr=new XMLHttpRequest();
}else{
var xhr=new ActiveXObject("Microsoft.XMLHTTP"); //兼容ie
}
xhr .open(‘POST‘,url, true); //POST方法
xhr .send(serialize(options)); //查询参数需要作为send()的参数传入
}
function serialize(data){
if(!data) return ‘‘;
var pairs = [], value;
for(name in data){ //遍历对象属性
if(!data.hasOwnProperty(name)) continue; //过滤掉继承原型的属性和方法
if(typeof data[name] === ‘function‘) continue;//过滤掉函数方法
value = data[name].toString(); //属性值转为字符串
name = encodeURIComponent(name); // 可把属性名称字符串作为URI 组件进行编码。返回值URIstring 的副本,其中某些字符将被十六进制的转义序列进行替换。
value = encodeURIComponent(value); //属性值进行URI编码。
pairs.push(name + ‘=‘ + value); //属性名和值放入数组
}
return pairs.join(‘&‘); //将数组中的元素用&分隔开返回成字符串形式
}
post(‘/addUser‘, {name: ‘jerry‘, age: 1}, function(data) {
console.log(data);
// 处理返回数据
});
以上是关于Ajax请求POST方法的封装的主要内容,如果未能解决你的问题,请参考以下文章