91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Delphi中怎么調用WebApi

發布時間:2021-06-24 16:00:48 來源:億速云 閱讀:1722 作者:Leah 欄目:大數據

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中怎么調用WebApi

delphi用IXMLHttpRequest的GET方法時必須加上時間戳   '&timestamp='+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方法時必須加上時間戳   '&timestamp='+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 + '&timestamp=' + 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問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業資訊頻道了解更多相關知識。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

贞丰县| 东港市| 台湾省| 礼泉县| 武强县| 扎兰屯市| 武宁县| 商河县| 上栗县| 临泉县| 海城市| 凤翔县| 福清市| 锡林浩特市| 福安市| 通道| 安陆市| 津南区| 寿光市| 嵊州市| 遵义县| 阿图什市| 三明市| 紫金县| 海原县| 大丰市| 菏泽市| 济阳县| 滨州市| 金溪县| 河南省| 威海市| 建阳市| 大化| 利川市| 永定县| 临漳县| 松潘县| 城口县| 陵川县| 梁河县|