REST将多个输入传递给GET方法

时间:2010-03-31 11:48:46

标签: rest

我在RAD中部署了一个简单的基于REST的应用程序。

使用http://localhost/<contextroot>/users/<username>访问简单网址,其中使用<username>访问reqeust.getAttributes()。现在,如何将多个属性传递给REST服务?

2 个答案:

答案 0 :(得分:3)

通常你会使用查询参数:

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

您尚未说明您使用的语言或框架,因此我无法告诉您如何在代码中执行此操作。

答案 1 :(得分:0)

您还可以使用样式http://localhost/<contextroot>/comments/<username>/after/<date>的网址,但如果您希望包含大量选项,则可能会变得混乱。