link_to helper奇怪的url

时间:2017-05-05 04:11:41

标签: html ruby-on-rails erb

大家好,我想知道如何摆脱我点击网站上的链接时生成的这个丑陋的网址。它看起来像这样:

http://www.imaaroncs.com/about?as=AboutMe&class=changeMe&controler=welcome

我想要它只是说,但我不知道如何使用link_to rails helper这是我到目前为止所做的:

<li class="navbar-brand"><%= link_to "About Me", class: "changeMe",controler: "welcome", as: "AboutMe", action: "about"%>

2 个答案:

答案 0 :(得分:1)

您发送了一些您不需要的参数(之后的参数?被解释为其他查询参数)

<%= link_to "About Me", action: "about" %>

答案 1 :(得分:0)

尝试使用文字哈希:

<%= link_to "About Me", {class: "changeMe", controller: "welcome", as: "AboutMe", action: "about"} %>

PS。此外,控制器中有两个l。你有一个。