RoR:#<class> </class>的新定义方法

时间:2014-08-27 13:40:18

标签: ruby-on-rails ruby methods resources nested

我正在处理Rails中的嵌套资源。我的用户有一个农场。

用户模型:

class User < ActiveRecord::Base

has_one :farm

devise :database_authenticatable, :registerable,
     :recoverable, :rememberable, :trackable, :validatable, 
     :token_authenticatable, :confirmable, :lockable, :timeoutable


attr_accessible :email, :password, :password_confirmation, :remember_me, :username

end

农场主管

 class Farm < ActiveRecord::Base

 belongs_to :user

 attr_accessible :name, :contact, :adress, :user_id
 end

我的农场迁移

class CreateFarms < ActiveRecord::Migration
def change
create_table :farms do |t|
  t.references :user
  t.string :name
  t.string :contact
  t.string :adress

  t.timestamps
end
end
end

我的routes.rb

 resources :users do
  resource :farm, path: "farm"
 end


 devise_for :users, :path => 'account

所以我认为我的所有参考和协会都没问题。但是当我尝试制作一个新农场时,我得到了上述错误。我在FarmsController中的新方法:

def new

@farm = @user.farm.new

respond_to do |format|
  format.html # new.html.erb
  format.json { render json: @farm }
end
end

我还有load_User函数设置为before_filter

def load_User
  @user = User.find(current_user)

end

同样的事情发生在我使用

的show函数中
@farm = @user.farm.find(params[:id])

它说没有方法&#34;找到&#34;。 如果有人可以提供帮助和/或详细说明,我无法猜测或发现原因。

2 个答案:

答案 0 :(得分:5)

您有此错误,因为(可能)您尝试在find实例上调用Farm,该实例未定义find方法。由于@user.farm已经返回Farm个实例(或nil),您应该只是:

@farm = @user.farm

您的第一个错误类似。这是因为没有为new实例定义Farm方法。相反,你应该:

@farm = @user.build_farm

答案 1 :(得分:5)

  1. 没有@user.farm.new方法,因为它与一对一关联。试试@user.build_farm

  2. 非常简单。如果只有一个农场,则无需搜索。 @user.farm应该足够了。