Activestorage :: UnpreviewableError
我正在尝试为我的 PDF 文件创建 PDF 预览,但我不知道从哪里开始,我在 Ruby on Rails 上使用 poppler gem。
该应用程序给我这条消息:“ActiveStorage::UnpreviewableError in Tasks#show”
所以我不明白我应该在哪里声明预览
在谷歌上查看我发现了几个带有方法的网站,但我不知道在哪里添加此代码,我尝试在应用程序目录上创建一个新文件夹,但这不起作用。
I'm trying to create a PDF preview for my PDF files, but I don't know where to start, I'm using poppler gem on Ruby on Rails.
The app is giving me this message: "ActiveStorage::UnpreviewableError in Tasks#show"
So I'm not understanding where should I need to declare the preview
Looking on google I found several sites with methods, but I don't know where to add this code, I've tried by creating a new folder on the app directory, but this didn't work.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在 activestorage 文档中介绍了使用此功能的要求。
libvips
软件包)或 ImageMagick 用于图像分析和转换poppler-utils package) 或 muPDF 用于 PDF 预览
检查您的环境是否有要求
In activestorage documentation says about requirements to use this feature.
libvips
package) or ImageMagick for image analysis and transformationspoppler-utils
package) or muPDF for PDF previewsCheck if in your environment has the requirements
感谢您的建议,我意识到我还没有在我的环境中安装 muPDF,对我有用的是从主目录(在我的项目之外)安装它,就是这样,现在预览工作得很好。
https://ubuntuhandbook .org/index.php/2018/05/install-mupdf-1-3-0-ubuntu-18-04/
Thanks for the advice, I realized I haven't installed muPDF on my environment, the thing that worked for me was to install it from the home directory (outside my project) and that's it, now the preview is working perfectly fine.
https://ubuntuhandbook.org/index.php/2018/05/install-mupdf-1-3-0-ubuntu-18-04/