0

在 Facebook API 上关注这个 RailsCast。以下代码允许将块传递给facebook方法并从rescue.

  def facebook
     @facebook ||= Koala::Facebook::API.new(oauth_token)
     block_given? ? yield(@facebook) : @facebook
   rescue Koala::Facebook::APIError => e
     logger.info e.to_s
     nil # or consider a custom null object
   end

   def friends_count
     facebook { |fb| fb.get_connection("me", "friends").size }
   end

但是,我有十几个调用facebook此处定义的方法的方法,我不想facebook {}在每个方法中重复。(语法不是特别好)。

有没有办法简化这个?类似于过滤器的东西,它将环绕每个调用facebook.

4

2 回答 2

1

您可以为此尝试委托

http://www.simonecarletti.com/blog/2009/12/inside-ruby-on-rails-delegate/

于 2013-03-06T14:58:58.650 回答
1

这是一个较老的问题,但我只是遇到了它和一个可能的答案,所以我会把它留在这里以防其他人感兴趣。它来自websocket-ruby。这个想法是提供一种一致的方式来提供有和没有救援包装器的方法,以供您享受。

module WebSocket
  module ExceptionHandler
    attr_accessor :error

    def self.included(base)
      base.extend(ClassMethods)
    end

    module ClassMethods
      # Rescue from WebSocket::Error errors.
      #
      # @param [String] method_name Name of method that should be wrapped and rescued
      # @param [Hash] options Options for rescue
      #
      # @options options [Any] :return Value that should be returned instead of raised error
      def rescue_method(method_name, options = {})
        define_method "#{method_name}_with_rescue" do |*args|
          begin
            send("#{method_name}_without_rescue", *args)
          rescue WebSocket::Error => e
            self.error = e.message.to_sym
            WebSocket.should_raise ? raise : options[:return]
          end
        end
        alias_method "#{method_name}_without_rescue", method_name
        alias_method method_name, "#{method_name}_with_rescue"
      end
    end
  end
end
于 2016-07-28T16:30:41.497 回答