gpt4 book ai didi

ruby - 在 Ruby/Sinatra 中,如何使用 ERB 模板和错误消息停止

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

在我的 Sinatra 项目中,我希望能够同时显示错误代码和错误消息来停止:

halt 403, "Message!"

我希望将其依次呈现在错误页面模板中(使用 ERB)。例如:

error 403 do
erb :"errors/error", :locals => {:message => env['sinatra.error'].message}
end

但是,显然 env['sinatra.error'].message(又名自述文件和每个网站都说我应该这样做)没有公开我提供的消息。 (此代码在运行时返回 undefined method `message' for nil:NilClass 错误。)

我已经搜索了 4-5 个小时并试验了所有内容,但我无法弄清楚要通过 ERB 呈现消息的位置!有谁知道在哪里吗?


(似乎我能想到的唯一选择是写这个而不是上面的 halt 代码,每次我想停止时:

halt 403, erb(:"errors/error", :locals => {m: "Message!"})

此代码有效。但这是一个困惑的解决方案,因为它涉及对错误 ERB 文件的位置进行硬编码。)

(如果您想知道,这个问题与 show_exceptions 配置标志无关,因为 set :show_exceptions, falseset :show_exceptions, :after_handler 没有区别。)

最佳答案

为什么它不起作用 − 使用源代码!

让我们看一下 Sinatra 源代码,看看为什么这个问题不起作用。 Sinatra 主文件 ( lib/sinatra/base.rb ) 只有 2043 行,而且代码非常易读!

halt 所做的是:

def halt(*response)
response = response.first if response.length == 1
throw :halt, response
end

异常被捕获:

# Dispatch a request with error handling.
def dispatch!
invoke do
static! if settings.static? && (request.get? || request.head?)
filter! :before
route!
end
rescue ::Exception => boom
invoke { handle_exception!(boom) }
[..]
end

def handle_exception!(boom)
@env['sinatra.error'] = boom
[..]
end

但出于某种原因,这段代码永远不会运行(通过基本的“printf-debugging”测试)。这是因为在 invoke 中 block 的运行方式如下:

# Run the block with 'throw :halt' support and apply result to the response.
def invoke
res = catch(:halt) { yield }
res = [res] if Fixnum === res or String === res
if Array === res and Fixnum === res.first
res = res.dup
status(res.shift)
body(res.pop)
headers(*res)
elsif res.respond_to? :each
body res
end
nil # avoid double setting the same response tuple twice
end

注意这里的catch(:halt)if Array === res and Fixnum === res.first 部分是 halt 设置的内容以及如何设置响应主体和状态代码。

error 403 { .. } block 在 call! 中运行:

invoke { error_block!(response.status) } unless @env['sinatra.error']

现在我们了解了为什么这不起作用,我们可以寻找解决方案;-)

那么我可以通过某种方式使用 halt 吗?

据我所知,还没有。如果您查看 invoke 方法的主体,您会发现在使用 halt 时始终设置主体。你不想要这个,因为你想覆盖响应主体。

解决方案

使用“真正的”异常而不是halt“伪异常”。 Sinatra 似乎没有预定义的异常,但 handle_exception! 确实会查看 http_status 以设置正确的 HTTP 状态:

  if boom.respond_to? :http_status
status(boom.http_status)
elsif settings.use_code? and boom.respond_to? :code and boom.code.between? 400, 599
status(boom.code)
else
status(500)
end

所以你可以使用这样的东西:

require 'sinatra'

class PermissionDenied < StandardError
def http_status; 403 end
end

get '/error' do
#halt 403, 'My special message to you!'
raise PermissionDenied, 'My special message to you!'
end

error 403 do
'Error message -> ' + @env['sinatra.error'].message
end

按预期工作(输出为 错误消息 -> 我给你的特别消息!)。您可以在此处返回 ERB 模板。

关于ruby - 在 Ruby/Sinatra 中,如何使用 ERB 模板和错误消息停止,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36127041/

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