1

我正在尝试匹配 Nancy 模块中的所有路由。Sinatra 使用 splat 参数,例如

get '/download/*.*' do
  # matches /download/path/to/file.xml
  params[:splat] # => ["path/to/file", "xml"]
end

这在南希有吗?

4

1 回答 1

3

这在文档中有所介绍 - 看看贪心节点:

https://github.com/NancyFx/Nancy/wiki/Defining-routes

于 2013-05-15T17:00:51.847 回答