Rails - 更改图像目录?
我开发了一个简单的应用程序来根据查询字符串输入显示一系列子目录中的图像。 (我或多或少为 FileMaker 构建了自己的 Rails 版本的 360Works SuperContainer。)我已将一些测试目录复制到 public/images
中,一切似乎都工作得很好,但这个应用程序需要操作超过 60GB 的图像,并将它们全部放入 public/images
文件夹中实际上是不可行的。
除了将路径硬编码到模型中之外,如何设置配置选项来为 images
文件夹指定不同的默认目录?
I've developed a simple app to display images in a series of subdirectories based on querystring input. (I more or less built my own Rails version of 360Works SuperContainer, for FileMaker.) I have copied a few test directories into public/images
and everything seems to be working just great, but this app needs to operate over upwards of 60gb of images, and putting them all into the public/images
folder isn't going to really be feasible.
Other than hard-coding the path into my model, how can I set a configuration option to specify a different default directory for the images
folder?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为您可以更改 asset_host 字段:
http://api.rubyonrails。 org/classes/ActionView/Helpers/AssetTagHelper.html#M001688
I think you can change the asset_host field :
http://api.rubyonrails.org/classes/ActionView/Helpers/AssetTagHelper.html#M001688