相对于[自定义]视图目录的图像补丁
在我的 Rails 应用程序中,用户可能有自定义页面模板(不适用于应用程序),这些模板存储在 public/user_templates/user1/ 中,
视图 .erb 文件也存储在用户模板文件夹中。每个模板文件夹内都有一个图像文件夹。如何使用 .erb 文件中图像的相对路径?
例如
谢谢, 伊姆兰
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果不以某种方式通过路由传递静态文件,则无法访问应用程序目录内的静态文件。您应该在应用程序的 public/images 文件夹中为每个 user_id 创建一个目录,然后在其中存储每个用户的图像。然后,您可以通过
或使用视图助手
image_tag "#{user_id}/image1 访问这些图像.jpg"
根据您的应用程序,您可能需要使用 PaperclipYou 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 helperimage_tag "#{user_id}/image1.jpg"
Depending on your application, you may want to use Paperclip