如何禁用一个字段的 action_text 附件,但为另一个字段启用它?
我有一个带有 2 个字段的帖子模型 -description_without_attachments
和content_with_attachments
.
模型 Post.rb:
has_rich_text :description_without_attachments
has_rich_text :content_with_attachments
我发现如果添加以下代码packs/application.js
可以阻止trix action_text 的所有附件:
window.addEventListener("trix-file-accept", function(event) {
event.preventDefault()
alert("File attachment not supported!")
})
但是我只想阻止某些特定领域。我想它的工作方式如下:
has_rich_text :description_without_attachments, attachments: false