首页 > 开发 > AJAX > 正文

学习Ajax教程,详细了解Get与Post

2024-09-01 08:26:03
字体:
来源:转载
供稿:网友

学习ajax教程,详细了解get与post

get方式:
作用:可传送简单数据
大小:url最大长度是2083 bytes,可以用于get传递数据的长度是2048 bytes
包含体:数据追加到url中发送,也就是http的header传送

post方式:
作用:可传送简单复杂数据
大小:web.config里限制
包含体:数据在http请求的实体内容里传送

ajax用post模式传送数据.需注意:
1.设置header的context-type为application/x-www-form-urlencode确保服务器知道实体中有参数变量.通常使用xmlhttprequest对象的setrequestheader("context-type","application/x-www-form-urlencoded;")
2.参数是名/值一一对应的键值对,每对值用&号隔开.如 name=abc&sex=man&age=18.
3.参数在send(参数)方法中发送
4.服务器端请求参数区分get与post.例如asp.net中以request.form["name"]对实体中的参数请求.这时url参数请求request.querystring["name"]将引发异常

<javascript language="javascript>
function stateevent()
{
if(xmlhttpobject.readystate == 4)
{
if(xmlhttpobject.status == 200)
{
//code
}
}
}

function createxmlhttp()
{
if(window.activexobject)
{
return new activexobject("microsoft.xmlhttp");
}
else if (window.xmlhttprequest)
{
return new xmlhttprequest();
}
}

function start()
{
var paramstring = "name=abc&sex=man&age=18";
var xmlhttpobject = createxmlhttp();
xmlhttpobject.onreadystatechange = stateevent;
xmlhttpobject.open("post","test.aspx",true);
xmlhttpobject.setrequestheader("content-type","application/x-www-form-urlencoded;"); //设置服务器响应请求体参数
xmlhttpobject.send(paramstring);
}
</script>
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表