Rails,如何从 url 字符串获取参数?
抱歉我的英语...
我在 archives.rb 模型中有一个从 html 内容中获取所有 src 属性的方法,我得到的 src 如下:
http://localhost:3000/es/editor/archives/28/show_image?x=142&y=142
我需要从该网址获取参数,具体来说:id, x ,y
谢谢, 问候。
Possible Duplicate:
How do I easily parse a URL with parameters in a Rails test?
sorry for my english...
I have in my archives.rb model a method to get all src attributes from a html content, I am getting src's like:
http://localhost:3000/es/editor/archives/28/show_image?x=142&y=142
I need to get the params from that url, specifically: id, x, y
Thanks,
Regards.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
正确方法:
The correct approach :
在您的控制器中,您可以执行“params[:x]”和“params[:y]”。例如:
In your controller you can do 'params[:x]' and 'params[:y]'. For example:
例如,可以使用一些正则表达式来完成
It might be done using some regexp for example