问题描述
我正在运行Rails 6.0.3.2和ruby 2.6.6
我正在尝试使用ActiveStorage :: Downloading类,但不知道如何加载它! 我遇到了错误
irb(main):001:0> include ActiveStorage::Downloading
Traceback (most recent call last):
1: from (irb):1
NameError (uninitialized constant ActiveStorage::Downloading)
我很确定这是我,但我不知道。我已经在项目中使用ActiveStorage,但想使用download_blob_to_tempfile
方法。
解决方法
首先,使用require
和include
使用该模块的方法来加载库。
require 'active_storage/downloading'
include ActiveStorage::Downloading