Tfphttpclient例子
Tfphttpclient例子
uses fphttpclient;
http := Tfphttpclient.Create(nil); body := '{"sql":"select * from tunit"}'; http.RequestBody := TRawByteStringStream.Create(body); memo1.Text:=http.Post('http://localhost:1234/table/select'); http.Free;
本文来自博客园,作者:{咏南中间件},转载请注明原文链接:https://www.cnblogs.com/hnxxcxg/p/18384085