0

我目前正在借助“使用 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 %>
4

1 回答 1

1

我敢打赌你的 Rails 版本是 3.2.4?只需将您的 Rails 版本更新到 3.2.5+ 就可以了。

这是在 3.2.4 中发生的 Rails 中的回归错误。已修复:https ://github.com/rails/rails/commit/7056079761eba049bbc6108946a1626fe169dbdf

于 2012-06-14T07:11:52.823 回答