gpt4 book ai didi

ruby-on-rails - Postgresql 上带有 UUID 的 Rails 5.2 ActiveStorage

转载 作者:行者123 更新时间:2023-11-29 11:37:47 26 4
gpt4 key购买 nike

我们的应用程序使用 uuid 作为主键,在 Postgresql 数据库上。 (标准设置描述 here )。

我们按照描述的过程集成了 ActiveStorage here .使用 rails active_storage:install 并使用 rails db:migrate 进行迁移的标准设置。

我们有一个模型和对应的 Controller 如下:

# Model
class Message < ApplicationRecord
has_one_attached :image

def filename
image&.attachment&.blob&.filename
end
end

# Controller
class MessagesController < ApplicationController
def create
message = Message.create!(message_params)
redirect_to message
end

private
def message_params
params.require(:message).permit(:title, :content, :image)
end
end

我们观察到前几组图像与模型实例正确关联,但后来我们常常为模型实例获取随机图像,或者根本没有图像。每次,我们重新启动服务器,我们都能正确获得前几张图像,但随后就不可预测了。

不确定出了什么问题,我们在 Rails 控制台中进行了调试:

params[:image]
=> #<ActionDispatch::Http::UploadedFile:0x007fcf2fa97b70 @tempfile=#<Tempfile:/var/folders/dt/05ncjr6s52ggc4bk6fs521qw0000gn/T/RackMultipart20180726-8503-vg36kz.pdf>, @original_filename="sample.pdf", @content_type="application/pdf", @headers="Content-Disposition: form-data; name=\"file\"; filename=\"sample.pdf\"\r\nContent-Type: application/pdf\r\n">

在保存实例和检索文件名时,我们得到了一个随机文件,我们之前上传过。

@message = Message.new(message_params)
@message.filename
=> #<ActiveStorage::Filename:0x007fcf32cfd9e8 @filename="sample.pdf">

@message.save

@message.filename
=> #<ActiveStorage::Filename:0x007f82f2ad4ef0 @filename="OtherSamplePdf.pdf">

寻找这种奇怪行为的解释,以及可能的解决方案。

最佳答案

在 activestorage 中逐行运行数小时后 source code , 并运行相同的命令

@message = Message.new(message_params)
@message.save

一次又一次。我们一次又一次地得到相同的随机结果。然后我们查看了在将图像附加到消息时打印的日志栏,并观察到以下内容:

S3 Storage (363.4ms) Uploaded file to key: KBKeHJARTjnsVjkgSbbii4Bz (checksum: S0GjR1EyvYYbMKh44wqlag==)

ActiveStorage::Blob Create (0.4ms) INSERT INTO "active_storage_blobs" ("key", "filename", "content_type", "metadata", "byte_size", "checksum", "created_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id" [["key", "KBKeHJARTjnsVjkgSbbii4Bz"], ["filename", "sample.pdf"], ["content_type", "application/pdf"], ["metadata", "{\"identified\":true}"], ["byte_size", 3028], ["checksum", "S0GjR1EyvYYbMKh44wqlag=="], ["created_at", "2018-07-26 04:54:33.029769"]]

ActiveStorage::Attachment Create (2.7ms) INSERT INTO "active_storage_attachments" ("name", "record_type", "record_id", "blob_id", "created_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["name", "file"], ["record_type", "Message"], ["record_id", "534736"], ["blob_id", "0"], ["created_at", "2018-07-26 05:04:35.958831"]]

record_id 被设置为 534736,而不是 uuid。这就是我们出错的地方。

事件存储需要我们的消息模型的整数外键,而我们希望它使用 uuid。因此我们必须修复我们的迁移,使用 uuid 而不是整数外键。 p>

解决方法:

class CreateActiveStorageTables < ActiveRecord::Migration[5.2]
def change
create_table :active_storage_blobs, id: :uuid do |t|
t.string :key, null: false
t.string :filename, null: false
t.string :content_type
t.text :metadata
t.bigint :byte_size, null: false
t.string :checksum, null: false
t.datetime :created_at, null: false

t.index [ :key ], unique: true
end

create_table :active_storage_attachments, id: :uuid do |t|
t.string :name, null: false
t.references :record, null: false, polymorphic: true, index: false, type: :uuid
t.references :blob, null: false, type: :uuid

t.datetime :created_at, null: false

t.index [ :record_type, :record_id, :name, :blob_id ], name: "index_active_storage_attachments_uniqueness", unique: true
end
end
end

希望这对面临类似问题的人有所帮助。干杯!

关于ruby-on-rails - Postgresql 上带有 UUID 的 Rails 5.2 ActiveStorage,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51531441/

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