在服务器端创建一个新的 Blob,以预期来自客户端的直接到服务上传。当客户端上传完成时,signed_blob_id 可以作为表单的一部分提交,以引用预先创建的 Blob。
方法
- C
实例公共方法
创建() 链接
来源: 显示 | 在 GitHub 上
# File activestorage/app/controllers/active_storage/direct_uploads_controller.rb, line 7 def create blob = ActiveStorage::Blob.create_before_direct_upload!(**blob_args) render json: direct_upload_json(blob) end