ruby-on-rails-4 – Rails中的助手4

ruby-on-rails-4 – Rails中的助手4,第1张

概述我在Rails中编写了一个应用程序,它正在快速增长,并且我正在学习它.但是我不了解助手. application_helper.rb module ApplicationHelper # This file it's emptyend users_helper.rb module UsersHelper def avatar # Do something 我在Rails中编写了一个应用程序,它正在快速增长,并且我正在学习它.但是我不了解助手.

application_helper.rb

module ApplicationHelper    # This file it's emptyend

users_helper.rb

module UsersHelper    def avatar        # Do something    endend

customer_helper.rb

module CustomerHelper    # This file it's emptyend

为什么在任何客户的视图中都可以在用户帮助模块上调用头像辅助方法?
那么,为什么在许多文件中分离助手呢?

提前致谢.

P.S:Rails的第4版.

解决方法 因为默认情况下所有控制器都包含在所有控制器中.在这种情况下,单独的文件实际上仅用于逻辑分离.您可以改变该行为:

By default,each controller will include all helpers.

In prevIoUs versions of Rails the controller will include a helper
whose name matches that of the controller,e.g.,MyController will
automatically include MyHelper. To return old behavior set
config.action_controller.include_all_helpers to false.

http://api.rubyonrails.org/classes/ActionController/Helpers.html

总结

以上是内存溢出为你收集整理的ruby-on-rails-4 – Rails中的助手4全部内容,希望文章能够帮你解决ruby-on-rails-4 – Rails中的助手4所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1284273.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-09
下一篇 2022-06-09

发表评论

登录后才能评论

评论列表(0条)

保存