我正在寻找一种方法将我在flex应用中创建的图像上传到rails。我试过使用回形针,但它似乎没有用。
我在这里得到了这个教程:http://blog.alexonrails.net/?p=218
问题是,他们使用FileReference浏览客户端计算机上的文件。他们调用.upload(...)函数并将数据发送到上传控制器。但我正在使用URLLoader上传图像,该图像在我的Flex-App中进行了修改。首先,这是教程中的代码:
private function selectHandler(event:Event):void {
var vars:URLVariables = new URLVariables();
var request:URLRequest = new URLRequest(uri);
request.method = URLRequestMethod.POST;
vars.description = "My Description";
request.data = vars;
var uploadDataFieldName:String = 'filemanager[file]';
fileReference.upload(request, uploadDataFieldName);
}
我不知道如何设置
var uploadDataFieldName:String = 'filemanager[file]';
URLLoader中的。我在ByteArray中将图像数据压缩为JPEG。它看起来像这样:
public function savePicture():void {
var filename:String = "blubblub.jpg";
var vars:URLVariables = new URLVariables();
vars.position = layoutView.currentPicPosition;
vars.url = filename;
vars.user_id = 1;
vars.comic_id = 1;
vars.file_content_type = "image/jpeg";
vars.file_file_name = filename;
var rawBytes:ByteArray = new JPGEncoder(75).encode(bitmapdata);
vars.picture = rawBytes;
var request:URLRequest = new URLRequest(Data.SERVER_ADDR + "pictures/upload");
request.method = URLRequestMethod.POST;
request.data = vars;
var loader:URLLoader = new URLLoader(request);
loader.addEventListener(Event.COMPLETE, savePictureHandler);
loader.addEventListener(IOErrorEvent.IO_ERROR, errorHandlerUpload);
loader.load(request);
}
如果我将var.picture URLVariable设置为bytearray,那么我得到错误,上传是零。 这是Rails部分:
照片 - 型号:
要求'回形针'
class Picture < ActiveRecord::Base
# relations from picture
belongs_to :comic
belongs_to :user
has_many :picture_bubbles
has_many :bubbles, :through => :picture_bubbles
# attached file for picture upload -> with paperclip plugin
has_attached_file :file, :path => "public/system/pictures/:basename.:extension"
end
和具有上传功能的图片控制器:
class PicturesController < ApplicationController
protect_from_forgery :except => :upload
def upload
@picture = Picture.new(params[:picture])
@picture.position = params[:position]
@picture.comic_id = params[:comic_id]
@picture.url = params[:url]
@picture.user_id = params[:user_id]
if @picture.save
render(:nothing => true, :status => 200)
else
render(:nothing => true, :status => 500)
end
end
end
有谁知道如何解决这个问题?
THX, TUX
答案 0 :(得分:0)
尝试将“filemanager [file]”更改为“picture [file]”。我认为这与将其映射到控制器有关。
查看RestfulX,他们已经很好地解决了这个问题。具体来说,看看他们的XMLHTTPServiceProvider#uploadFile
方法。他们在那里有另一个像你写的那样的实现。我现在正在使用Paperclip的几个项目中使用它,它运行得很好。
我认为github上的Pomodo on Rails示例应用使用回形针上传个人资料图片。
希望有所帮助, 兰斯