本文介绍了使用url_for查询参数?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
url_for([:edit, @post])
正在工作并生成/comments/123/edit
.现在,我需要添加一个查询参数,以便代替
is working and generating /comments/123/edit
. Now I need to add a query parameter, so that instead of
/comments/123/edit
是
/comments/123/edit?qp=asdf
我尝试了url_for([:edit, @post], :qp => "asdf")
,但是没有.
推荐答案
使用命名的路由.
edit_post_path(@post, :qp => "asdf")
这篇关于使用url_for查询参数?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!