我目前正在借助“使用 Rails 进行敏捷 Web 开发”一书学习 Ruby on Rails,但我在第一个应用程序上遇到了问题。
我创建了应用程序
rails new depot
并生成了脚手架
rails generate scaffold Product \title:string description:text image_url:string price:decimal
然后我跑了rake db:migrate
根据这本书,我现在应该能够创建新产品,然后立即显示。但是当添加一个新产品时,它在查看 url 时不会显示,http://localhost:3000/products
或者http://localhost:3000/products.json
当我查看数据库文件时,添加的产品就在那里。
重新启动服务器后,添加的产品显示在列表中。有人知道我做错了什么吗?
使用:Rails 3.2.4、Ruby 1.9.3、WEBrick 1.3.1、SQLite 3 和 Mac OSX
编辑:脚手架生成的代码:
products_controller.rb
# GET /products
# GET /products.json
def index
@products = Product.all
respond_to do |format|
format.html # index.html.erb
format.json { render json: @products }
end
end
index.html.erb
<h1>Listing products</h1>
<table>
<tr>
<th>Title</th>
<th>Description</th>
<th>Image url</th>
<th>Price</th>
<th></th>
<th></th>
<th></th>
</tr>
<% @products.each do |product| %>
<tr>
<td><%= product.title %></td>
<td><%= product.description %></td>
<td><%= product.image_url %></td>
<td><%= product.price %></td>
<td><%= link_to 'Show', product %></td>
<td><%= link_to 'Edit', edit_product_path(product) %></td>
<td><%= link_to 'Destroy', product, confirm: 'Are you sure?', method: :delete %></td>
</tr>
<% end %>
</table>
<br />
<%= link_to 'New Product', new_product_path %>