1

我创建了以下模块:

module SlackHelper
  def alert_slack(message)
    notifier.ping.message
  end

  private

  def notifier(channel="default")
    @notifier[channel]||= Slack::Notifier.new ENV['SLACK_WEBHOOK_URL_' + channel]
  end
end

以前这是在没有渠道的情况下编写的,并且有效。我得到的错误是:

undefined method `[]' for nil:NilClass
4

2 回答 2

1
@notifier ||= Hash.new{|hsh, k| hsh[k] = Slack::Notifier.new ENV['SLACK_WEBHOOK_URL_' + k]}

有了这个,您的哈希配置为Slack::Notifier在您访问新密钥时自动构建。

所以你只需要做:@notifier[channel]它就会被实例化。

因此,您可以摆脱私有notifier方法并执行以下操作:

def alert_slack(message,channel='default')
  @notifier ||= Hash.new{|hsh, k| hsh[k] = Slack::Notifier.new ENV['SLACK_WEBHOOK_URL_' + k]}
  @notifier[channel].ping message
end
于 2015-01-26T23:43:02.663 回答
1

尝试:

def notifier(channel="default")
   @notifier ||= {}
   @notifier[channel] ||= Slack::Notifier.new ENV['SLACK_WEBHOOK_URL_' + channel]
end
于 2015-01-26T23:45:31.737 回答