作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在 Rails 3.2 应用程序中,我需要访问 lib
中的 url_helpers文件。我正在使用
Rails.application.routes.url_helpers.model_url(model)
ArgumentError (Missing host to link to! Please provide the :host parameter, set default_url_options[:host], or set :only_path to true):
config.action_mailer.default_url_option
建议的答案,但这在 Action 邮件程序之外不起作用。
最佳答案
在任何模块 Controller 中使用此字符串以使应用程序 URL-helpers 在任何 View 或 Controller 中工作。
include Rails.application.routes.url_helpers
routes.rb
Rails.application.routes.draw do
get 'action' => "contr#action", :as => 'welcome'
mount Eb::Core::Engine => "/" , :as => 'eb'
end
users_path
include Rails.application.routes.url_helpers
在 Controller
contr
eb.users_path
welcome_path
与根应用程序相同!
关于ruby-on-rails - 如何在 lib 模块中使用 url 助手,并为多个环境设置主机,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16720514/
我是一名优秀的程序员,十分优秀!