码迷,mamicode.com
首页 > 其他好文 > 详细

向服务器发送请求

时间:2016-12-28 20:29:21      阅读:181      评论:0      收藏:0      [点我收藏+]

标签:解释   send   get   发送   class   发送请求   font   类型   pre   

向服务器发送请求

1.向服务器发送请求

  如需要将请求发送到服务器,我们使用XMLHttpRequest对象的open()和send()方法:

xmlhttp.open("GET","test1.txt",true);
xmlhttp.send();

  方法解释:

(1)open(method,url,async):

  规定请求的类型、URL以及是否异步处理请求;

  method:请求的类型,可以是GET或者POST;

  url:文件在服务器上的位置;

  async:true(同步)或者false(异步);

(2)send(string):

  将请求发送到服务器;

  string:仅用于post请求。

2.GET请求

(1)一个简单的GET请求

xmlhttp.open("GET","demo_get.asp",true);
xmlhttp.send();

 

(2)为了避免得到一个缓存结果,可以用一下方式,向URL添加一个唯一ID

xmlhttp.open("GET","demo_get.asp?t="+Math.random(),true);
xmlhttp.send();

 

(3)如果希望通过GET方法发送信息,向URL添加信息

xmlhttp.open("POST","demo_post.asp",true);
xmlhttp.send();

 

 

 

 

 

 

 

向服务器发送请求

标签:解释   send   get   发送   class   发送请求   font   类型   pre   

原文地址:http://www.cnblogs.com/ljiwej/p/6230316.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!