2

我是编码初学者。我正在上具体的课程,但有些行动对我不起作用。从技术上讲,它应该在页面上方显示“主页”、“关于”导航链接,但它对我不起作用。

它是这样说的:(这是一个 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>

有没有人可以帮助我?

先感谢您

PS:我使用的是 Windows 7。

4

1 回答 1

2

你错过了一些等号:

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

<%并且<%=不同:

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

查看ERB 文档了解详细信息。

于 2013-04-28T07:17:40.607 回答