我是编码的初学者。 我正在接受特定的教训,但有些动作对我不起作用。 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。
答案 0 :(得分:1)
你错过了一些等号:
<%= link_to "Home", root_path %>
<%= link_to "About", about_path %>
<%
和<%=
不同:
<% Ruby code -- inline with output %>
<%= Ruby expression -- replace with result %>
查看ERB Documentation了解详情。