在 Lift 中接收 HTTP 请求参数
我是 Lift 新手,我还无法理解它的 HTTP 请求/响应周期。 Lift 文档中彻底解释了处理 REST,但我正在寻找的内容要简单得多:如何访问 Web 服务中的 HTTP 请求正文/参数(当然是 Scala 代码)?
I'm a Lift newbie and I can't digest it's HTTP request/response cycle yet. Handling REST is thoroughly explained in Lift docs but what I'm looking for is much simpler: how do I access HTTP request body/params in my web service (in Scala code of course) ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
要获取给定名称的 HTTP 参数,您可以使用方法 S. param(参数名称)。
To get HTTP param with given name, you can use method S.param(parameter_name).
如果您使用的是 Lift 2.0,则可以使用
S.getRequestHeader()
。If you are using Lift 2.0, then you can use
S.getRequestHeader()
.