ajax中responseStream怎么使用

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ajax中responseStream怎么使用相关的知识,希望对你有一定的参考价值。

responseStream属性与responseText和responseXML的具体作用都是用来接收服务端返回的数据.三者的区别在于接收数据的格式不同.
responseText是用来接收服务端返回的字符串,文本格式的数据内容.
responseXML用来接收服务端返回的XML格式的数据.这两种方法比较常用.也比较好理解.
而responseStream可以接收服务端传回来的流数据,所谓的流数据就是原始的,未经过解码的数据.通常是一些图片或影像文件.当数据传回以后.你必须要在客户端创建Ado Stream对像来解析显示这些数据.
参考技术A responseStream属性与responseText和responseXML的具体作用都是用来接收服务端返回的数据.三者的区别在于接收数据的格式不同.
responseText是用来接收服务端返回的字符串,文本格式的数据内容.
responseXML用来接收服务端返回的XML格式的数据.这两种方法比较常用.也比较好理解.
而responseStream可以接收服务端传回来的流数据,所谓的流数据就是原始的,未经过解码的数据.通常是一些图片或影像文件.当数据传回以后.你必须要在客户端创建Ado Stream对像来解析显示这些数据.

idHttp 中GET POST应用

转:https://www.cnblogs.com/limingliyu/archive/2016/07

使用IDHTTP,下面是一些关于 GET、POST 请求基本使用方法的代码

一、GET 请求

复制代码
 1 procedure GetDemo;
 2 var
 3   IdHttp : TIdHTTP;
 4   Url : string;//请求地址
 5   ResponseStream : TStringStream; //返回信息
 6   ResponseStr : string;
 7 begin
 8   //创建IDHTTP控件
 9   IdHttp := TIdHTTP.Create(nil);
10   //TStringStream对象用于保存响应信息
11   ResponseStream := TStringStream.Create(\'\');
12   try
13     //请求地址
14     Url := \'http://dict.youdao.com/\';
15     try
16       IdHttp.Get(Url,ResponseStream);
17     except
18       on e : Exception do
19       begin
20         ShowMessage(e.Message);
21       end;
22     end;
23     //获取网页返回的信息
24     ResponseStr := ResponseStream.DataString;
25     //网页中的存在中文时,需要进行UTF8解码
26     ResponseStr := UTF8Decode(ResponseStr);
27   finally
28     IdHttp.Free;
29     ResponseStream.Free;
30   end;   
31 end;
复制代码

如果Get需要添加请求参数,则直接在地址后添加,各参数间用&连接

如:http://dict.youdao.com?param1=1&param2=2

二、Post 请求

复制代码
 1 procedure PostDemo;
 2 var
 3   IdHttp : TIdHTTP;
 4   Url : string;//请求地址
 5   ResponseStream : TStringStream; //返回信息
 6   ResponseStr : string;
 7 
 8   RequestList : TStringList;     //请求信息
 9   RequestStream : TStringStream;
10 begin
11   //创建IDHTTP控件
12   IdHttp := TIdHTTP.Create(nil);
13   //TStringStream对象用于保存响应信息
14   ResponseStream := TStringStream.Create(\'\');
15 
16   RequestStream := TStringStream.Create(\'\');
17   RequestList := TStringList.Create;
18   try
19     Url := \'http://f.youdao.com/?path=fanyi&vendor=fanyiinput\';
20     try
21       //以列表的方式提交参数
22       RequestList.Add(\'text=love\');
23       IdHttp.Post(Url,RequestList,ResponseStream);
24 
25       //以流的方式提交参数
26       RequestStream.WriteString(\'text=love\');
27       IdHttp.Post(Url,RequestStream,ResponseStream);
28     except
29       on e : Exception do
30       begin
31         ShowMessage(e.Message);
32       end;
33     end;
34     //获取网页返回的信息
35     ResponseStr := ResponseStream.DataString;
36     //网页中的存在中文时,需要进行UTF8解码
37     ResponseStr := UTF8Decode(ResponseStr);
38   finally
39     IdHttp.Free;
40     RequestList.Free;
41     RequestStream.Free;
42     ResponseStream.Free;
43   end;
44 end;
复制代码

Post请求在网页中多使用List形式提交参数。

不过在一些API中规定了POST的请求格式为 JSON 格式或 XML,这是需要注意发起请求前需要先设置 ContentType 属性,使用Stream方式提交

已上面代码为例:

提交 JSON 格式:IdHttp.Request.ContentType :=\'application/json\';

提交 XML 格式: IdHttp.Request.ContentType :=\'text/xml\';

如未按要求格式提交,一般会返回 HTTP 1.1 / 415

/03/5638966.html

以上是关于ajax中responseStream怎么使用的主要内容,如果未能解决你的问题,请参考以下文章

reader.ReadToEnd 和 Stream.Read 之间的区别

delphi中使用HTTP控件,怎么使用POST的异步方式

ajax传JSON时设置的contenttype导致JAVA中request.getParameter("")怎么也接收不到数据

怎么使用jquery提交表单

如何刷新特定的div内容和内容来自ajax页面

python中re模块的compile函数应该怎么用?