ActionView :: Template :: Error(缺少要链接的主机!请提供:host参数,设置default_url_options [:host],或将:only_path设置为true):
但是,该项目还修改了url_for函数以使用子域,如此railscast中所示:
http://railscasts.com/episodes/221-subdomains-in-rails-3
因此,传统的错误答案,例如在我的环境设置中设置变量似乎不是解决方案.
以下是一些其他提示:
>这是一个全新的设置,我刚刚克隆了一个项目并安装了ruby,铁轨,宝石等
>我尝试了“rvm implode”,并开始多次
>团队的其他成员通常在Mac上本地开发,而我正在远程开发Ubuntu机器.
>我以root身份工作(这有关系吗?)
在1889ms完成500内部服务器错误
ActionView :: Template :: Error(缺少要链接的主机!请提供:host参数,或将:only_path设置为true):
1:%header.menu {:role => “旗帜”}
2:.col980
3:%h1
4:%a.logo {:href => root_url({:subdomain => false})}
5:-if current_user.premium?
6:%img {:alt => “恭恭敬敬”,:src => “/images/logo_beta_premium.png\”}/
7: –
app / helpers / url_helper.rb:16:in url_for’
应用程序/视图/共享/ _logged_in_writer_nav.html.haml:4:in_app_views_shared__logged_in_writer_nav_html_haml__656388632_107925510′
app / views / layouts / application.html.haml:35:在_app_views_layouts_application_html_haml__193634629_107212530中的块中
应用程序/佣工/ application_helper.rb:15:inhtml5_haml_tag”
app / views / layouts / application.html.haml:2:in _app_views_layouts_application_html_haml__193634629_107212530′
应用程序/控制器/ application_controller.rb:18:inerror_generic”
解决方法
例如,如果您的默认网址是example.com:
> link_to "All Blogs",root_url(:subdomain => false) #=> <a href="http://example.com/">All Blogs</a>
您可以在config / environments / *.rb文件中设置默认主机,方法是将以下行添加到您所在的环境配置文件的底部.
config.before_initialize do MyApp::Application.routes.default_url_options[:host] = 'myapp.com' end
编辑:
您可以使用* _path完全避免此问题
> link_to "All Blogs",root_path #=> <a href="/">All Blogs</a>