Delphi - Tokyo XE 10.2 RESTFUL客户端库请求/响应

时间:2017-05-27 20:21:03

标签: rest delphi request response

http://docwiki.embarcadero.com/RADStudio/Tokyo/en/Tutorial:_Using_the_REST_Client_Library_to_Access_REST-based_Web_Services

完成此代码示例以通过Delphi Rest客户端库运行Req / Resp。很想知道是否通过显示的示例给出了请求参数的值可以是动态的吗?

该值在示例中是硬编码的,并且TEdit Button已链接,但我没有看到我们如何能够将值从TEdit输入传递给值参数的Request参数。

截图:

enter image description here

1 个答案:

答案 0 :(得分:0)

是。您可以从代码更改请求参数值。 Params属性只是TRESTRequestParameter类型项的集合(集合本身属于TRESTRequestParameterList类型)。写例如:

{ there seems to be only indexed access implemented for this
  collection, so to access the first parameter value write }
RESTRequest1.Params[0].Value := Edit1.Text;