У меня есть вложенное изображение ресурса для модели пользователя.если я пытаюсь загрузить изображение с «remote_file_url», оно загружает изображения в каталог tmp carrierwave, но не перемещает их в реальный каталог.это «должно» быть проблемой проверки.но это не так.он отлично работает в консоли:
p = Picture.find(360)
p.remote_file_url = "http://example.com/somepic.jpg"
p.save!
my Параметры для запроса обновления пользователя с картинкой:
"user"=>{"pictures_attributes"=>{"0"=>{"remote_file_url"=>"http://example.com/somepic.jpg", "id"=>"359"}
, если я загружаю без remote_file_url (только входной файлполе), это работает:
"user"=>{"pictures_attributes"=>{"0"=> { "file"=>#<ActionDispatch::Http>, "remote_file_url"=>"", "id"=>"359"}
та же проблема возникает, когда я использую функцию "remove_file".прекрасно работает в консоли, но не работает с обновлением вида / контроллера.
==================
Обновление
контроллер:
def update
@user = current_user
if @user.update_attributes!(params[:user])
respond_to do |format|
format.js { render :json => @user.to_json(:methods => [:pictures]) }
format.html {redirect_to :back, :notice => "Successfully updated user."}
end
else
render :action => 'edit'
end
end
Изображение Модель:
class Picture < ActiveRecord::Base
attr_accessible :file, :file_cache, :remove_file, :position, :remote_file_url
mount_uploader :file, PictureUploader
belongs_to :user
end
Модель пользователя
# encoding: UTF-8
class User < ActiveRecord::Base
attr_accessible :remote_file_url, :beta_token, :wants_gender, :gender, :radius, :email, :password, :password_confirmation, :remember_me, :region, :latitude, :longitude, :gmaps, :pictures_attributes
has_many :pictures, :dependent => :destroy
accepts_nested_attributes_for :pictures, :allow_destroy => true
end
довольно простые вещи.... я удалил определения для пользовательской модели ....
= simple_form_for @user, :url => profile_path(@user) do |f|
%ul.profiles.users
- @user.pictures.each_with_index do |picture, i|
%li.user
.fields
= f.simple_fields_for :pictures, picture do |picture_from|
- if picture.file.present?
= picture_from.input :_destroy, :as => :boolean
= picture_from.input :position
= picture_from.input :file
= picture_from.input :remote_file_url, :as => :hidden
= picture_from.input :file_cache