私は2つのモデルを持っています。ホテルモデル:
class Hotel < ActiveRecord::Base
attr_accessible ...
belongs_to :user
end
ユーザーモデル:
class User < ActiveRecord::Base
devise ...
has_many :hotels
end
hotels_controller.rb
class HotelsController < ApplicationController
def index
@hotels = current_user.hotels
end
def show
@hotel = Hotel.find(params[:id])
end
def new
@hotel = Hotel.new
end
def create
@hotel = Hotel.new(params[:hotel])
@hotel.user = current_user
if @hotel.save
redirect_to hotels_path, notice: "Nice, you added new hotel " + @hotel.title
else
render "new"
end
end
def edit
@hotel = Hotel.find(params[:id])
end
def update
@hotel = Hotel.find(params[:id])
if @hotel.update_attributes(params[:hotel])
redirect_to hotels_path, notice: "Hotel " + @hotel.title + " was successfully updated"
else
render "edit"
end
end
def destroy
@hotel = Hotel.find(params[:id])
@hotel.destroy
redirect_to hotels_path, notice: "Hotel " + @hotel.title + " was deleted"
end
end
サインインすると、いくつかのフィールドでホテルを作成しています。送信後、ホテルのリストにリダイレクトされ、素晴らしいです。しかし、いくつかのホテルを削除しようとすると、
NoMethodError in HotelsController#index
undefined method `hotels' for nil:NilClass
その後、ホームページ(ルート)に移動すると、セッションが終了し、ユーザーがログアウトされます。しかし!ホテルは無事に破壊されました。インデックスアクションで何か...何が間違っていますか? アイデアはありますか?