簡體   English   中英

更新活動存儲附件文件名

[英]Update Active Storage attachment filename

我想知道如何更新 Active Storage 附件的文件名。

這是我現在正在嘗試的:

2.5.1 :052 > attachment.filename                                                                                                                                                             
 => #<ActiveStorage::Filename:0x00007fb2926cf6a0 @filename="example.pdf">
# at this point the filename is example.pdf

2.5.1 :053 > attachment.update!(filename: 'foo.pdf')                                                                                              
   (0.2ms)  BEGIN                                                        
  Patient Load (0.5ms)  SELECT  "patients".* FROM "patients" WHERE "patients"."deleted_at" IS NULL AND "patients"."id" = $1 LIMIT $2  [["id", 40861], ["LIMIT", 1]]
   (0.2ms)  COMMIT                                                                                                                                                                           
 => true
# I update the filename to "foo.pdf" and the save is evidently successful

2.5.1 :054 > attachment.reload.filename                                                                                                                                                      
  ActiveStorage::Attachment Load (0.4ms)  SELECT  "active_storage_attachments".* FROM "active_storage_attachments" WHERE "active_storage_attachments"."id" = $1 LIMIT $2  [["id", 99], ["LIMI
T", 1]]                                                                                                                                             
  ActiveStorage::Blob Load (0.3ms)  SELECT  "active_storage_blobs".* FROM "active_storage_blobs" WHERE "active_storage_blobs"."id" = $1 LIMIT $2  [["id", 99], ["LIMIT", 1]]
 => #<ActiveStorage::Filename:0x00007fb292675308 @filename="example.pdf">   
# I reload the attachment and the filename reverts to what it was before

如您所見,我正在嘗試的是行不通的。 如何更改文件名?

我想到了:

attachment = ActiveStorage::Attachment.find(attachment_id)
attachment.blob.update!(filename: 'new_filename.pdf')

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM