gpt4 book ai didi

ruby-on-rails - Curl Post JSON 格式到带有图像的 Rails 中的 ActiveStorage

转载 作者:行者123 更新时间:2023-12-04 03:37:40 24 4
gpt4 key购买 nike

如何通过 curl 发布以将文件(在这种情况下为图像)上传到事件存储?文档没有确切说明如何使用 curl 或 JS(例如 Axios)

像这样的工作(如果我关闭真实性 token ( skip_before_action :verify_authenticity_token )):

 curl -v -H 'Content-Type: application/json' -H 'Accept: application/json' -X POST -d '{"image": {"user_id":"1"}}' http://localhost:3000/images.json

这将像正常的 curl JSON 请求一样按预期发布。

像这样用 base64 编码文件看起来很有希望:
(echo -n '{"image": {"user_id":"1", "picture":"'; base64 /Users/cj/Desktop/DesktopArchive/5vvyo4u8y8wz.jpg; echo '"}}') | curl -v -H "Content-Type: application/json" -H 'Accept: application/json' -X POST -d @-  http://localhost:3000/images.json

虽然我得到了一个 ActiveSupport::MessageVerifier::InvalidSignature在上传。我怀疑 base64 不是正确的签名。我应该使用什么来编码要上传到事件存储的图像?

编辑:

不是通过 JSON,而是通过表单工作:
 curl \
-F "image[user_id]=1" \
-F "image[picture]=@/Users/cj/Desktop/DesktopArchive/5vvyo4u8y8wz.jpg" \
http://localhost:3000/images

但是,您如何通过 json 调用来完成它,以便它可以通过 Axios 或其他方式完成?

最佳答案

我的示例与您的图像模型不同。
但是您可以在显示我的示例代码后更改代码
https://github.com/x1wins/tutorial-rails-rest-api/blob/master/README.md#active-storage

model


class Post < ApplicationRecord
has_many_attached :files
end

controller


  # posts_controller
# POST /posts
def create
@post = Post.new(post_params)
@post.files.attach(params[:post][:files]) if params.dig(:post, :files).present?

set_category @post.category_id

if @post.save
render json: @post, status: :created, location: api_v1_post_url(@post)
else
render json: @post.errors, status: :unprocessable_entity
end
end

# PATCH/PUT /posts/1
def update
@post.files.attach(params[:post][:files]) if params.dig(:post, :files).present?
if @post.update(post_params)
render json: @post
else
render json: @post.errors, status: :unprocessable_entity
end
end

# DELETE /posts/:id/attached/:id
def destroy_attached
attachment = ActiveStorage::Attachment.find(params[:attached_id])
attachment.purge # or use purge_later
end

curl


curl -F "post[body]=string123" \
-F "post[category_id]=1" \
-F "post[files][]=@/Users/rhee/Desktop/item/log/47310817701116.csv" \
-F "post[files][]=@/Users/rhee/Desktop/item/log/47310817701116.csv" \
-X POST http://localhost:3000/api/v1/posts

关于ruby-on-rails - Curl Post JSON 格式到带有图像的 Rails 中的 ActiveStorage,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49958905/

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