gpt4 book ai didi

ruby-on-rails - 在 sinatra 子应用程序中过滤之前

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

我有一个 Rails 应用程序和一个 Sinatra 应用程序:

路线.rb:

mount MySinatraApp => "/streaming"

sinatra 应用程序:

class MySinatraApp< Sinatra::Base
...
before do
puts 'hello from sinatra!'
end
...
end

我希望过滤器仅在以 /streaming... 开头的请求上运行,但是,令我惊讶的是,过滤器在对整个 Rails 应用程序的每个请求上运行。对于这种行为我能做什么?我可以在 before 之后添加一个正则表达式过滤器,但我认为这不是一个好的样式。

最佳答案

嗯,我换了

mount MySinatraApp => "/streaming"

match "/streaming" => SinatraQuoridor, :anchor => false

并且过滤器开始按预期措辞。尽管如此,我还是不清楚为什么会这样:根据 this文章中,mount 应该只调用带有 :anchor => false 的匹配,所以路由应该是相同的。但行为有所不同。

关于ruby-on-rails - 在 sinatra 子应用程序中过滤之前,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14486551/

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