gpt4 book ai didi

ruby-on-rails - Rails Controller 中未定义的方法呈现 - 尝试使用 200 状态代码响应 Sendgrid

转载 作者:数据小太阳 更新时间:2023-10-29 07:06:06 27 4
gpt4 key购买 nike

我正在使用 Sendgrid Parse API 和 Griddler gem 来接受传入的电子邮件。在大多数情况下,这工作正常;但是,如果您未使用状态代码 200 响应 Sendgrid,他们将假定该应用程序未正确接收 POST 请求并继续尝试进行 POST 3 天。我正在尝试使用状态代码进行响应,但遇到了问题。

在常规的 RESTful 路由中,您可以执行类似...

render :status => 200

但是,我认为这必须在 Controller 中完成才能识别渲染方法。 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 的建议,我将渲染调用移到了 Controller ,如下所示,但现在我得到了一个不同的错误,我不知道该怎么做。

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

最佳答案

render 是实例方法,不是类方法。您需要实例化 Controller 的一个实例,但这无论如何都行不通。

尝试从您的模型渲染是一个严重的错误。该模型不知道涉及 HTTP 请求。您的 Controller 应该创建您的模型,对其调用任何操作,等待成功,然后您的 Controller 应该呈现响应。您尝试做的事情从根本上是错误的。

关于ruby-on-rails - Rails Controller 中未定义的方法呈现 - 尝试使用 200 状态代码响应 Sendgrid,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26153126/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com