Rails link_to“New Post”,带参数的'#'?

时间:2015-04-02 04:26:52

标签: ruby-on-rails

嘿,我正在尝试这样做,以便当按下按钮时弹出一个模态,但模态需要来自url参数的一些数据。例如。我在:

localhost:3000/posts

然后点击按钮,我需要将网址更改为:

localhost:3000/posts?comments_id=14
到目前为止我有这个:

= link_to "Add Post", '#'(comments_id: @comments.id)

这显然不起作用,但你可能会看到我想要做的事情

1 个答案:

答案 0 :(得分:3)

你可以这样做

= link_to "Add Post", posts_path(comments_id: @comments.id)

= link_to "Add Post", "/posts?comments_id=#{@comments.id}"