gpt4 book ai didi

ruby-on-rails - 载波程序化上传

转载 作者:行者123 更新时间:2023-11-29 11:09:10 25 4
gpt4 key购买 nike

现在,在我的 Rails 应用程序中,我正在使用 Carrierwave 将文件上传到 Amazon S3。我正在使用文件选择器和表单来选择和提交文件,效果很好。

但是,我现在正在尝试从 iPhone 应用程序发帖,并且正在接收文件的内容。我想使用这些数据创建一个文件,然后使用 Carrierwave 上传它,这样我就可以获得正确的路径。

May 文件模型包括:

path
file_name
id
user_id

其中 path 是 Amazon S3 url。我想做这样的事情来构建文件:

 data = params[:data]
~file creation magic using data~
~carrierwave upload magic using file~
@user_id = params[:id]
@file_name = params[:name]
@path = path_provided_by_carrierwave_magic
File.build(@user_id, @file_name, @path)

真的很想有人为我指明正确的方向。谢谢!

最佳答案

这是我通过载波从 iOS 应用程序执行上传到 s3 的代码:

首先是照片模型

class Photo
include Mongoid::Document
include Mongoid::Timestamps

mount_uploader :image, PhotoImageUploader

field :title, :type => String
field :description, :type => String
end

Api::V1::PhotosController 中的第二个

def create
@photo = current_user.photos.build(params)
if @photo.save
render :json => @photo.to_json, :status=>201
else
render :json => {:errors => @photo.errors}.to_json, :status=>403
end
end

然后使用 AFNetworking 从我的 iPhone 应用程序调用

-(void) sendNewPhoto
{
NSURL *url = [NSURL URLWithString:@"http://myserverurl.com"];

NSDictionary *params = [NSDictionary dictionaryWithObjectsAndKeys:_photoTitle.text, @"title", _photoDescription.text, @"description",nil];

AFHTTPClient *httpClient = [[AFHTTPClient alloc] initWithBaseURL:url];

NSString *endUrl = [NSString stringWithFormat:@"/api/v1/photos?auth_token=%@", [[User sharedInstance] token]];

NSData *imageData = UIImageJPEGRepresentation(_photo.image, 1.0);
NSURLRequest *request = [httpClient multipartFormRequestWithMethod:@"POST" path:endUrl parameters:params constructingBodyWithBlock:^(id<AFMultipartFormData> formData) {
[formData appendPartWithFileData:imageData name:@"image" fileName:@"image.jpg" mimeType:@"image/jpg"];
}];

AFJSONRequestOperation *operation = [AFJSONRequestOperation JSONRequestOperationWithRequest:request success:^(NSURLRequest *request, NSHTTPURLResponse *response, id JSON) {
NSLog(@"%@", JSON);
} failure:^(NSURLRequest *request, NSHTTPURLResponse *response, NSError *error, id JSON) {
NSLog(@"Error creating photo!");
NSLog(@"%@", error);
}];

[operation start];
}

在 JSON 响应中,我可以获得 Photo 的新实例,其 image.url 属性设置为 s3 中的 url。

关于ruby-on-rails - 载波程序化上传,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12274180/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com