ruby-on-rails – 在模型中无法识别的rails path helper

前端之家收集整理的这篇文章主要介绍了ruby-on-rails – 在模型中无法识别的rails path helper前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在我的rails应用程序中,我有一个团队模型.我的团队的route.rb文件如下所示:
resources :teams

在我的teams_controller.rb文件中,team_path(Team.first.id)行正常工作但是我的模型team.rb中无法识别team_path url帮助器.我收到此错误消息:

undefined local variable or method `team_path' for # <Class:0x00000101705e98>
 from /usr/local/rvm/gems/ruby-1.9.3-p392/gems/activerecord-4.1.1/lib/active_record/dynamic_matchers.rb:26:in `method_missing'

我需要找到一种方法让模型识别team_path路径助手.

解决方法

您应该能够以这种方式调用url_helpers:
Rails.application.routes.url_helpers.team_path(Team.first.id)
原文链接:https://www.f2er.com/ruby/268660.html

猜你在找的Ruby相关文章