我正在使用 Sendgrid Parse API 和 Griddler gem 来接受传入的电子邮件。在大多数情况下,这很好用。但是,如果您没有以状态代码 200 响应 Sendgrid,他们将假定应用程序没有正确接收 POST 请求并继续尝试进行 POST 3 天。我正在尝试使用状态代码进行响应,但遇到了问题。
在常规 RESTful 路由中,您可以执行类似...
render :status => 200
但是,我相信这必须在控制器中完成以识别渲染方法。Griddler 建议您创建一个 EmailProcessor 模型并使用“处理”方法来处理电子邮件。
据我了解,您不能在模型中使用渲染方法。因此,我创建了一个带有类方法的 EmailProcessorsController 类,如下所示。
class EmailProcessor < ActiveRecord::Base
include ApplicationHelper
def initialize(email)
@email = email
@to = email.to # this is an array
@from = email.from
end
def process
# do other stuff
EmailProcessorsController.render_ok
end
end
class EmailProcessorsController < ActionController::Base
def self.render_ok
render :status => 200
end
end
以下是我从我的应用程序中得到的错误。它不喜欢渲染方法:(
NoMethodError (undefined method `render' for EmailProcessorsController:Class):
app/controllers/email_processors_controller.rb:6:in `render_ok'
app/models/email_processor.rb:16:in `process'
我是一个较新的开发人员,这可能非常简单,但我被困住了。非常感谢您对问题和设计的任何想法和评论。谢谢!
更新!
根据@meagar 的建议,我将渲染调用移至控制器,如下所示,但现在我得到一个不同的错误,我不知道该怎么做。
class EmailProcessorsController < ApplicationController
def initialize(email)
@email = email
@to = email.to # this is an array
@from = email.from
end
def process
# do other stuff
render :status => 200
end
end
如果没有渲染调用,我不会收到错误消息。这是我在调用渲染时遇到的错误...
Module::DelegationError (ActionController::RackDelegation#status= delegated to @_response.status=, but @_response is nil: #<EmailProcessorsController:0x000001063b1558 @email=#<Griddler::Email:0x00000106378ac8 @params={"headers"=>"Received: by mx-007.sjc1.send