ActionView :: Template ::错误未定义的方法

时间:2013-01-13 02:21:31

标签: ruby-on-rails ruby ruby-on-rails-3 macos

我正在关注为旧版本的rails编写的Head First Rails。我正在研究它的第2章项目,但是在Rails 3中。以下是我的文件。

ads_controller.rb

class AdsController < ApplicationController
  def show
    @ad = Ad.find(params[:id])
  end

  def index
    @ads = Ad.find(:all)
  end
end

ad.rb

class Ad < ActiveRecord::Base
  attr_accessible :description, :email, :img_url, :name, :price, :seller_id
end

index.html.rb

</h1>
<ul>
<% for ad in @ads %>
  <li><a href="/ads/<%= ad.id %>"><%= ad.name %></a></li>
<% end %>
</ul>

show.html.rb

<body>
    <p>
        <b>Name:</b><%= @ad.name %>
    </p>
    <p>
        <b>Description:</b><%= @ad.desciption %>
    </p>
    <p>
        <b>Price:</b><%= @ad.price %>
    </p>
    <p>
        <b>Seller Id:</b><%= @ad.seller_id %>
    </p>
    <p>
        <b>Email:</b><%= @ad.email %>
    </p>
    <p>
        <img src="<%= @ad.img_url %>"/>
    </p>
</body>

schema.rb

ActiveRecord::Schema.define(:version => 20121209174120) do

  create_table "ads", :force => true do |t|
    t.string   "name"
    t.text     "description"
    t.decimal  "price"
    t.integer  "seller_id"
    t.string   "email"
    t.string   "img_url"
    t.datetime "created_at",  :null => false
    t.datetime "updated_at",  :null => false
  end

end

填充所有字段的数据库。 http://0.0.0.0:3000/ads/有效,但http://0.0.0.0:3000/ads/<any number>不起作用,并引发以下错误:

广告#show中的NoMethodError

Showing /Users/ava/Projects/mebay/app/views/ads/show.html.erb where line #6 raised:

undefined method `desciption' for #<Ad:0x007f7ff346c100>

Extracted source (around line #6):

3:      <b>Name:</b><%= @ad.name %>
4:  </p>
5:  <p>
6:      <b>Description:</b><%= @ad.desciption %>
7:  </p>
8:  <p>
9:      <b>Price:</b><%= @ad.price %>

Rails.root: /Users/ava/Projects/mebay
Application Trace | Framework Trace | Full Trace

app/views/ads/show.html.erb:6:in `_app_views_ads_show_html_erb___4217851794431988162_70093760484140'

在服务器窗口上:

ActionView::Template::Error (undefined method `desciption' for #<Ad:0x007f7ff346c100>):
    3:      <b>Name:</b><%= @ad.name %>
    4:  </p>
    5:  <p>
    6:      <b>Description:</b><%= @ad.desciption %>
    7:  </p>
    8:  <p>
    9:      <b>Price:</b><%= @ad.price %>
  app/views/ads/show.html.erb:6:in `_app_views_ads_show_html_erb___4217851794431988162_70093760484140'

如果我在show.html.rb中移除说明,那么它可以正常工作并显示名称,价格,卖家_和电子邮件。我做错了什么?

Ruby版本:ruby 1.9.3p0 (2011-10-30 revision 33570) [x86_64-darwin11.4.0] Rails版本:Rails 3.2.7

感谢。

1 个答案:

答案 0 :(得分:5)

你错过了show.html.erb中'description'中的'r':

undefined method 'desciption'

<b>Description:</b><%= @ad.desciption %>