?",params[:id]) res-6ren">
gpt4 book ai didi

ruby-on-rails - 为什么 ActiveRecord::StatementInvalid 在这个 Rails 方法中无法拯救?

转载 作者:行者123 更新时间:2023-12-03 20:22:13 25 4
gpt4 key购买 nike

为什么我无法用以下方法挽救任何东西?

def get_things
begin
things= @member.things.where("id>?",params[:id])
rescue ActiveRecord::StatementInvalid
render( inline: "RESCUED ActiveRecord::StatementInvalid" )
return
rescue
render( inline: "RESCUED something" )
return
end
render( inline: "#{things.first.title}" )
end

当使用有效 id 调用时,它可以工作:
$  curl -vd "id=3" http://localhost:3000/get_things

但是如果我通过了一个错误的,例如:
$  curl -vd "id=3,0" http://localhost:3000/get_things
$ curl -vd "id='3'" http://localhost:3000/get_things

异常未获救:
< HTTP/1.1 500 Internal Server Error
<h1>
ActiveRecord::StatementInvalid
in ApplicationController#get_things
</h1>
<pre>PG::Error: ERROR: invalid input syntax for integer: &quot;'3'&quot;

仅当渲染发生在开始/救援块内时
def get_things
begin
things= @member.things.where("id>?",params[:id])
render( inline: "#{things.first.title}" )
rescue ActiveRecord::StatementInvalid
render( inline: "RESCUED ActiveRecord::StatementInvalid" )
return
end
end

它按预期工作:
$ curl -vd "id='3'" http://localhost:3000/get_things
< HTTP/1.1 200 OK
RESCUED ActiveRecord::StatementInvalid

最佳答案

据我所知,things在您的情况下,将是一个包含查询信息的类,但在您尝试访问基于查询的元素(如 things.first )之前,不会执行查询。

things= @member.things.where("id>?",params[:id]) # query not run
things= things.order("id desc") # still not run
things.first.title # now the query runs, the statement can be invalid

这就是它不能被拯救的原因,因为在你的渲染行中,异常发生的地方,而不是在 things 的创建中。 .

这应该没问题:
def get_things
begin
things= @member.things.where("id>?",params[:id])
thing_title = things.first.title
rescue ActiveRecord::StatementInvalid
render( inline: "RESCUED ActiveRecord::StatementInvalid" )
return
rescue
render( inline: "RESCUED something" )
return
end
render( inline: "#{thing_title}" )
end

关于ruby-on-rails - 为什么 ActiveRecord::StatementInvalid 在这个 Rails 方法中无法拯救?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11483973/

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