使用 Sinatra,我可以使用以下方法将多个“未知”参数传递给路由:
get '/say/*/to/*' do
# matches /say/hello/to/world
params[:splat] # => ["hello", "world"]
end
如何在 Espresso 中做同样的事情?
最佳答案
Espresso 中的路由是常规的 Ruby 方法。
因此,如果该方法适用于 Ruby,则该路线将适用于 Espresso。
您要实现的目标是由 Ruby 免费提供的。
只需定义一个带有预定义参数的 Ruby 方法:
require 'e'
class App < E
map '/'
def say greeting = :hello, vertor = :to, subject = :world
"say #{greeting} #{vertor} #{subject}"
end
end
# some testing
require 'sonar' # same as rack-test but a bit better
include Sonar
app App # letting Sonar know that app to test
puts get('/say').body
# => say hello to world
puts get('/say/Hi').body
# => say Hi to world
puts get('/say/Hi/from').body
# => say Hi from world
puts get('/say/Hello/from/Espresso').body
# => say Hello from Espresso
puts get('/say/Goodbye/to/Sinatra').body
# => say Goodbye to Sinatra
Working Demo
关于ruby - 带有 Espresso 的 Splat 参数,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/13711811/