顯示所有用戶的照片的作品,但顯示一個用戶的特定照片不顯示(顯示丟失的圖像,而不是由id定義的)。獲取特定圖像的路線是/users/:user_id/photos/:id
。這是我的照片控制器:回形針顯示丟失的圖像,而不是定義的
class PhotosController < ApplicationController
before_action :find_user, only: [:index, :new, :create, :update]
before_action :find_photo, only: [:show, :destroy]
def index
@photos = @user.photos
end
def new
@photo = @user.photos.build
end
def show
end
def create
@photo = Photo.new(photo_params)
if @photo.save
if params[:images]
params[:images].each { |image|
@user.photos.create(image: image)
}
end
redirect_to :action => :index
else
render 'new'
end
end
def update
@photo = @user.photos.find(params[:id])
if @photo.update
redirect_to user_photos
else
render 'edit'
end
end
def destroy
@photo.destroy
redirect_to user_photos
end
private
def find_user
@user = User.find(params[:user_id])
end
def find_photo
@photo = Photo.find(params[:id])
end
def photo_params
params.require(:photo).permit(:title, :image, :user_id)
end
end
這是我用戶控制器:
class UsersController < ApplicationController
def index
@search = User.search(params[:q])
if @search
@users = @search.result.paginate(:per_page => 10, :page => params[:strana])
else
@users = User.all.paginate(:per_page => 10, :page => params[:strana]).order("created_at DESC")
end
end
def new
@user = User.new
end
def create
@user = User.new(user_params)
if @user.save
redirect_to @user
else
render 'new'
end
end
def show
find_params
@photos = @user.photos
end
def edit
find_params
end
def update
find_params
if @user.update(user_params)
redirect_to @user
else
render 'edit'
end
end
def destroy
find_params
@user.destroy
redirect_to users_path
end
這是照片/顯示觀點:
<%= image_tag @photo.image.url(:thumb) %>
這是照片/索引查看:
條<% @user.photos.each do |photo| %>
<%= image_tag(photo.image) %>
<%= photo.title %>
<% end %>
路線嵌套:
resources :users do
resources :photos
end
如果您試圖顯示特定用戶的所有照片,它應該位於用戶顯示頁面而不是照片/顯示中。 –
那麼,我的應用程序的結構有點不同:在用戶/節目是用戶信息,並且有一個按鈕_Photos_發送到該用戶的照片的索引。無論如何,這並不會改變任何事情,因爲我仍然需要調用'/ users /:user_id/photos /:id'來查看特定照片。 – Nikola