我已经使用 gem 'trix' 在 rails 应用程序中集成了 trix-editor 功能。
但是,在暂存环境中进行测试时,trix_editor 内容字段显示图像的相对路径。
<img src="/images/2036780.jpg" style="height: 400px; width: 600px;">
有没有办法可以使用 image_url 或其他东西来为 trix_editor 内容字段中的图像定义图像的绝对路径,如
<img src="https://asdf.cloudfront.net/images/2036780.jpg" style="height: 400px; width: 600px;">