ruby on rails错误导航菜单链接,使用“%link_to”

时间:2013-04-28 07:05:37

标签: ruby-on-rails ruby

我是编码的初学者。 我正在接受特定的教训,但有些动作对我不起作用。 techincally它应该在页面上方显示“home”,“about”导航链接,但它对我不起作用。

这就是它所说的内容:(这是一个home.html.erb文件)

<% link_to "Home", root_path %>

<% link_to "About", about_path %>

<h1>Welcome to one month rails!</h1>

<p>you've found the home page for the <%= link_to "one month rails", "http://onemonthrails.com" %> application. </p>

有没有人可以帮助我?

提前谢谢

P.S:我正在使用Windows 7。

1 个答案:

答案 0 :(得分:1)

你错过了一些等号:

<%= link_to "Home", root_path %>
<%= link_to "About", about_path %>

<%<%=不同:

<% Ruby code -- inline with output %>
<%= Ruby expression -- replace with result %>

查看ERB Documentation了解详情。