我试图创建一个简单的rails应用程序,用户可以在其中创建任意数量的播放列表。我对rails很新,我想知道是否应该嵌套这样的资源:
Rails.application.routes.draw do
resources :users do
resources :playlists
end
当我rake routes
:
Prefix Verb URI Pattern Controller#Action
user_playlists GET /users/:user_id/playlists(.:format) playlists#index
POST /users/:user_id/playlists(.:format) playlists#create
new_user_playlist GET /users/:user_id/playlists/new(.:format) playlists#new
edit_user_playlist GET /users/:user_id/playlists/:id/edit(.:format) playlists#edit
user_playlist GET /users/:user_id/playlists/:id(.:format) playlists#show
PATCH /users/:user_id/playlists/:id(.:format) playlists#update
PUT /users/:user_id/playlists/:id(.:format) playlists#update
DELETE /users/:user_id/playlists/:id(.:format) playlists#destroy
users GET /users(.:format) users#index
POST /users(.:format) users#create
new_user GET /users/new(.:format) users#new
edit_user GET /users/:id/edit(.:format) users#edit
user GET /users/:id(.:format) users#show
PATCH /users/:id(.:format) users#update
PUT /users/:id(.:format) users#update
DELETE /users/:id(.:format) users#destroy
root GET / default_pages#home
signup GET /signup(.:format) users#new
signin GET /signin(.:format) users#signin
我可以成功访问我有此链接的/ users / 1 /播放列表(在播放列表的index.html.erb中):
<%= link_to 'New Playlist', new_user_playlist_path(params[:user_id])%>
但是点击它会给我这个错误:
undefined method `playlists' for nil:NilClass
Extracted source (around line #18):
16 # GET /playlists/new
17 def new
18 @playlist = @user.playlists.new
19 end
20 # GET /playlists/1/edit
这就是我的playlist_controller的样子:
class PlaylistsController < ApplicationController
before_action :set_playlist, only: [:show, :edit, :update, :destroy]
:set_user
# GET /playlists
# GET /playlists.json
def index
@playlists = Playlist.all
end
# GET /playlists/1
# GET /playlists/1.json
def show
end
# GET /playlists/new
def new
@playlist = @user.playlists.new
end
# GET /playlists/1/edit
def edit
end
# POST /playlists
# POST /playlists.json
def create
@playlist = @user.playlists.new(playlist_params)
respond_to do |format|
if @playlist.save
format.html { redirect_to @user.playlist, notice: 'Playlist was successfully created.' }
format.json { render :show, status: :created, location: @playlist }
else
format.html { render :new }
#format.json { render json: @playlist.errors, status: :unprocessable_entity }
end
end
end
# PATCH/PUT /playlists/1
# PATCH/PUT /playlists/1.json
def update
respond_to do |format|
if @playlist.update(playlist_params)
format.html { redirect_to @playlist, notice: 'Playlist was successfully updated.' }
format.json { render :show, status: :ok, location: @playlist }
else
format.html { render :edit }
format.json { render json: @playlist.errors, status: :unprocessable_entity }
end
end
end
# DELETE /playlists/1
# DELETE /playlists/1.json
def destroy
@playlist.destroy
respond_to do |format|
format.html { redirect_to playlists_url, notice: 'Playlist was successfully destroyed.' }
format.json { head :no_content }
end
end
private
def set_user
@user = User.find_by(params[:user_id])
end
# Use callbacks to share common setup or constraints between actions.
def set_playlist
@playlist = Playlist.find(params[:id])
end
# Never trust parameters from the scary internet, only allow the white list through.
def playlist_params
params.require(:playlist).permit(:user_id, :title, :img)
end
end
我的想法是,由于预期的URL应该看起来像users / 1 / playlists / 1,我需要传递两个变量,一个用于user_id,一个用于播放列表id(某种类型)但是我不确切知道在哪里/如何...有谁可以帮助我?
由于
答案 0 :(得分:3)
我认为问题出在before_action
,这就是为什么@user
没有设置的原因。尝试再添加一个时间before_action
before_action :set_playlist, only: [:show, :edit, :update, :destroy]
class PlaylistsController < ApplicationController
before_action :set_playlist, only: [:show, :edit, :update, :destroy]
before_action :set_user, only: [:new, :create]
...
end
<强> UPD 强>
我又找到了一个地方。
尝试在视图中使用@user
。 new_user_playlist_path(@user)
,它应该已经从before_action