3

使用 Sinatra,我可以使用以下方法将多个“未知”参数传递给路由:

get '/say/*/to/*' do
  # matches /say/hello/to/world
  params[:splat] # => ["hello", "world"]
end

如何在 Espresso 中做同样的事情?

4

1 回答 1

3

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

工作演示

于 2012-12-04T21:44:02.223 回答