本文整理自网络,侵删。
var
http: TIdHttp;
sendtoserver: TStringStream;
str: string;
begin
http := TIdHttp.Create(); // 创建
http.HandleRedirects := True; // 允许转头
http.ReadTimeout := 3000; // 延迟时间
http.Request.ContentType := 'application/json'; // 要求格式
sendtoserver := TStringStream.Create(joserv.AsJSON());
str := http.Post('http://192.168.1.149/epark/WinData.php', sendtoserver); // 服务器端
end;
相关阅读 >>
Delphi 10 下提示sharedactivitycontext错误的解决方法
Delphi中文件名函数-路径、名称、子目录、驱动器、扩展名
Delphi实现win10下Delphi 10.3.1 inline hook 域名转向之internetconnecta
更多相关阅读请进入《Delphi》频道 >>