开发者

list Rails controller instance variables

开发者 https://www.devze.com 2023-03-07 05:46 出处:网络
i was trying to list the instance variables inside a controller but came up with irb>HomeController.instance_variable_names

i was trying to list the instance variables inside a controller but came up with

irb>HomeController.instance_variable_names
=> ["@visible_actions", "@inheritable_attributes", "@controller_path", "@action_methods", "@_process_action_callbacks"]

and I tried it on the action

irb>HomeController.action("index").instance_variable_names
=> []

so what开发者_如何学Go do controller Instance variables belong to?


The instance variables belong to the instantiated controller object, and are only created when the action method has executed. Try this:

irb>instantiated_controller = HomeController.new
irb>instantiated_controller.index
irb>instantiated_controller.instance_variable_names
=> ["@_status", "@_headers", ...


You can also call self.instance_variable_names directly from the controller code and then see them in logs.

class ProfilesController < ApplicationController
  ...
  def update
    logger.info("List of instance vars: #{self.instance_variable_names}")
    ...
  end
end
0

精彩评论

暂无评论...
验证码 换一张
取 消