我在rails app中有这样的
方法:
def current_user
return @current_user if @current_user.present?
@current_user = current_user_session && current_user_session.record
end
我还没有用过.present?方法之前,我进入我的交互式ruby外壳玩它.
每当我使用xxx.present?它返回NoMethodError.如果xxx是字符串,数字,数组,则无关紧要.
我该如何使用这种方法?
present是ActiveSupport提供的
方法.它不是核心ruby的一部分.这就是为什么你不能在ruby外壳中使用它.要使用它,您需要在控制台中需要相关的库(例如irb / pry):
require 'active_support'
require 'active_support/core_ext'
这样,您就可以访问activesupport提供的所有实用程序方法.
原文链接:https://www.f2er.com/ruby/269448.html