嘿,我正在尝试这样做,以便当按下按钮时弹出一个模态,但模态需要来自url参数的一些数据。例如。我在:
localhost:3000/posts
然后点击按钮,我需要将网址更改为:
localhost:3000/posts?comments_id=14
到目前为止我有这个:
= link_to "Add Post", '#'(comments_id: @comments.id)
这显然不起作用,但你可能会看到我想要做的事情
答案 0 :(得分:3)
你可以这样做
= link_to "Add Post", posts_path(comments_id: @comments.id)
或强>
= link_to "Add Post", "/posts?comments_id=#{@comments.id}"