您好,登錄后才能下訂單哦!
Delphi中怎么調用WebApi,針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。
Delphi調用WebApi時我們用到了IXMLHttpRequest,在單元引用里面加上msxml即可.
調用起來非常簡單,定義HttpReq: IXMLHttpRequest;
HttpReq := CoXMLHTTPRequest.Create;
HttpReq.open('Post', url, False, EmptyParam, EmptyParam);
上面的參數第一個就是用到的方法GET就寫'Get',Post就寫'Post',第二個是通訊地址,后面的就默認這樣填寫就到了
HttpReq.setRequestHeader('Accept', 'application/json');
HttpReq.setRequestHeader('Content-Type', 'application/json');
上面是設置請求頭的格式
HttpReq.send(parasjson); //開始搜索
在Send里面,如果用的GET方法就直接填入EmptyParam,如果用的POST方法就在這里填入自己的JSON字符串
resultjson := HttpReq.responseText;
獲取返回信息
GET方法必須注意一點
delphi用IXMLHttpRequest的GET方法時必須加上時間戳 '×tamp='+inttostr(Windows.GetTickCount),如果后面不加上時間戳,只會GET一次,不再請求GET了
自己封裝的完整調用WebApi的單元
unit DoWebApi;
interface
uses
Variants, msxml, SysUtils, Windows;
//WebApi
//GET
function WebApiGet(url : string; var resultjson: string; parasstr:string=''): Integer;
//Post
function WebApiPost(url, parasjson: string; var resultjson: string): Integer;
implementation
//獲取Get
//delphi用IXMLHttpRequest的GET方法時必須加上時間戳 '×tamp='+inttostr(Windows.GetTickCount)
//如果不加只會GET一次,不再GET了
// Added by Administrator 2016-09-23 16:17:08
function WebApiGet(url: string; var resultjson: string;parasstr:string=''): Integer;
var
transurl: string;
HttpReq: IXMLHttpRequest;
begin
if parasstr = '' then
transurl := url + '?timestamp=' + inttostr(Windows.GetTickCount)
else
transurl := url + '?' + parasstr + '×tamp=' + inttostr(Windows.GetTickCount);
Result := -1;
try
try
HttpReq := CoXMLHTTPRequest.Create;
HttpReq.open('get', transurl, False, EmptyParam, EmptyParam);
HttpReq.setRequestHeader('Accept', 'application/json');
HttpReq.setRequestHeader('Content-Type', 'application/json');
HttpReq.send(EmptyParam); //開始搜索
resultjson := HttpReq.responseText;
Result := 0;
except
Result := -1;
end;
finally
end;
end;
//Post
function WebApiPost(url, parasjson: string; var resultjson: string): Integer;
var
HttpReq: IXMLHttpRequest;
begin
Result := -1;
try
HttpReq := CoXMLHTTPRequest.Create;
HttpReq.open('Post', url, False, EmptyParam, EmptyParam);
HttpReq.setRequestHeader('Accept', 'application/json');
HttpReq.setRequestHeader('Content-Type', 'application/json');
HttpReq.send(parasjson); //開始搜索
resultjson := HttpReq.responseText;
Result := 0;
except
Result := -1;
end;
end;
end.
關于Delphi中怎么調用WebApi問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業資訊頻道了解更多相關知識。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。