开发者

REST pass multiple inputs to GET method

I have deployed a simple REST based application in RAD.

A simple URL is accessed using http://localhost/<contextroot>/users/<use开发者_C百科rname> where <username> is accessed using reqeust.getAttributes(). Now, how do i pass more than one attribute to the REST service?


Usually you'll use query parameters:

http://localhost/<contextroot>/users/<username>?a=10&b=hello

You haven't indicated which language or framework you are using so I can't tell you how to do this in code.


You could also use URLs of the style http://localhost/<contextroot>/comments/<username>/after/<date>, but that tends to get messy if you wish to include a large number of options.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜