相对于[自定义]视图目录的图像补丁

发布于 2024-09-29 23:34:08 字数 227 浏览 0 评论 0 原文

在我的 Rails 应用程序中,用户可能有自定义页面模板(不适用于应用程序),这些模板存储在 public/user_templates/user1/ 中,

视图 .erb 文件也存储在用户模板文件夹中。每个模板文件夹内都有一个图像文件夹。如何使用 .erb 文件中图像的相对路径?

例如

谢谢, 伊姆兰

In my Rails application, user may have custom page templates (not for the application) which are stored in public/user_templates/user1/

the view .erb file is also stored there in the user template folder. There is an images folder inside every template folder. How can I use the relative paths of the images in the .erb file?

For example <img src"images/image1" />

Thanks,
Imran

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

如果没有你 2024-10-06 23:34:08

如果不以某种方式通过路由传递静态文件,则无法访问应用程序目录内的静态文件。您应该在应用程序的 public/images 文件夹中为每个 user_id 创建一个目录,然后在其中存储每个用户的图像。然后,您可以通过 或使用视图助手 image_tag "#{user_id}/image1 访问这些图像.jpg" 根据您的应用程序,您可能需要使用 Paperclip

You can't access static files inside of your app directory without passing them through a route somehow. You should create a directory for each user_id in the public/images folder of your application, then store the images for each user there. Then you can access those images at <img src="images/#{user_id}/image1.jpg" /> or with a view helper image_tag "#{user_id}/image1.jpg" Depending on your application, you may want to use Paperclip

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文