在南希相当于Splat

时间:2013-05-15 15:57:49

标签: c# routing nancy

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

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

这是否存在于南希?

1 个答案:

答案 0 :(得分:3)

这在文档中有所介绍 - 看一下贪婪的节点:

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