helper 和 helper_method 做什么? [英] What do helper and helper_method do?

查看:20
本文介绍了helper 和 helper_method 做什么?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

helper_method 很简单:它使控制器的部分或全部方法可用于视图.

helper_method is straightforward: it makes some or all of the controller's methods available to the view.

什么是helper?是不是反过来,即将辅助方法导入文件或模块?(也许helperhelper_method 的名字很相似.它们可能更像是share_methods_with_viewimport_methods_from_view)

What is helper? Is it the other way around, i.e., it imports helper methods into a file or a module? (Maybe the name helper and helper_method are alike. They may rather instead be share_methods_with_view and import_methods_from_view)

参考

推荐答案

helper_method 方法是显式共享控制器中定义的一些方法,使它们可用于视图.这用于您需要从控制器和助手/视图访问的任何方法(控制器中不提供标准助手方法).例如常见用例:

The method helper_method is to explicitly share some methods defined in the controller to make them available for the view. This is used for any method that you need to access from both controllers and helpers/views (standard helper methods are not available in controllers). e.g. common use case:

#application_controller.rb
def current_user
  @current_user ||= User.find_by_id!(session[:user_id])
end
helper_method :current_user

helper 方法另一方面,用于将整个帮助程序导入控制器提供的视图(及其继承的控制器).这意味着什么

the helper method on the other hand, is for importing an entire helper to the views provided by the controller (and it's inherited controllers). What this means is doing

# application_controller.rb
helper :all

对于 Rails > 3.1

For Rails > 3.1

# application.rb
config.action_controller.include_all_helpers = true
# This is the default anyway, but worth knowing how to turn it off

使所有辅助模块可用于所有视图(至少对于从 application_controller 继承的所有控制器.

makes all helper modules available to all views (at least for all controllers inheriting from application_controller.

# home_controller.rb
helper UserHelper

使 UserHelper 方法可用于主控制器操作的视图.这相当于做:

makes the UserHelper methods available to views for actions of the home controller. This is equivalent to doing:

# HomeHelper
include UserHelper

这篇关于helper 和 helper_method 做什么?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆