Rails - 如何获取控制器中单个图像资源的 URL?
我尝试过包含 ActionView::Helpers::AssetTagHelper
,然后使用 image_path()
方法,但这让我感到悲伤:
undefined local variable or method `config' for ActionView::Helpers::AssetTagHelper:Module
可能缺少一些简单的东西。有什么想法吗?
I've tried including ActionView::Helpers::AssetTagHelper
and then using the image_path()
method however it gives me grief:
undefined local variable or method `config' for ActionView::Helpers::AssetTagHelper:Module
There's probably something simple I'm missing. Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我在巴洛的答案中找到了解决方案: 我怎样才能在 Rails 3 Controller 中使用 image_path
似乎对我有用,不需要在控制器中包含帮助程序
I found the solution in Barlow's answer here: How can I use image_path inside Rails 3 Controller
seems to work for me, no need to include helpers in the Controller