idHttp 中GET POST應用
阿新 • • 發佈:2017-11-20
yii dht ive html common requests nil cati end
轉: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¶m2=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
idHttp 中GET POST應用