我正在处理我的第一个rails项目,并尝试使用file_field
上传photos
belongs_to :album
。该表单显示在我的相册/ show.html.erb页面上,因为我想要显示相册并让用户能够从一个位置上传图片。但是,当我按表单上的提交时,它似乎无法上传。
这是我的照片/ _form.html.erb
<%= form_for(@photo, :html => { :multipart => true }, :url => { :action => 'create'} ) do |f| %>
<%= f.label :avatar %>
<%= f.file_field :avatar %>
<%= f.submit %>
<% end %>
这是我的相册/ show.html.erb页面。我添加了if / else语句只是为了测试@album实例是否正在接收我上传的图片,但它总是以“no”返回
<% if @album.photos.any? %>
yes
<% else %>
no
<% end %>
<div>
<%= render 'photos/form' %>
</div>
照片控制器(我真的很担心在这里设置实例变量的内容)
class PhotosController < ApplicationController
def create
@album = Album.find(params[:user_id][:album_id])
@photo = @album.build(params[:photo])
respond_to do |format|
if @album.save
format.html { redirect_to @album, notice: 'Album was successfully created.' }
format.json { render json: @album, status: :created, location: @album}
else
format.html { render action: "new" }
format.json { render json: @album.errors, status: :unprocessable_entity }
end
end
end
专辑模型
class Album < ActiveRecord::Base
attr_accessible :avatar, :name, :description
has_many :user_albums
has_many :users, :through => :user_albums
has_many :photos
end
照片模特
class Photo < ActiveRecord::Base
belongs_to :album
end
如果您需要任何其他文件,请告诉我
答案 0 :(得分:1)
你需要,
@album.photos.build(params[:photo])
另外,我假设你的上传机制是正确的。 :)
祝你好运