0

只有在控制器中设置变量时如何初始化变量???

4

1 回答 1

1

在定义方法时为配置文件添加默认值,并检查它是否不是默认值。

def initialize(profile = nil)
  if profile
    @profile = profile
    @person = profile.person
  end
end
于 2013-06-12T10:27:51.430 回答