Lift Web 框架查询字符串生成器
创建带有查询字符串参数的链接
/path/to/view?param=358&name=Something+with+spaces
如何在 Lift 中 ?我知道你可以简单地写它,我正在寻找一种明智的方法,对空格和其他特殊字符进行编码。例如:
Link("path/to/view").param("param", 358).param("name", "Something with spaces")
提前致谢, 埃塔姆。
How do you create a link with query string parameters:
/path/to/view?param=358&name=Something+with+spaces
in Lift? I know you can simply write it, I am looking for a wise approach, which encode spaces and other special characters. For example:
Link("path/to/view").param("param", 358).param("name", "Something with spaces")
Thanks in advance,
Etam.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
net.liftweb.util.HttpHelpers
特征中有appendParams
方法:Scala REPL 的回复:
如您所见,它获取字符串形式的 URL,
Seq< /code> 参数元组,最后返回字符串。
There is
appendParams
method innet.liftweb.util.HttpHelpers
trait:Reply from Scala REPL:
As you can see, it gets URL as a String,
Seq
of param tuples and finally returns String.