标签: c# routing nancy
我正在尝试匹配Nancy模块中的所有路由。 Sinatra使用splat参数,例如
get '/download/*.*' do # matches /download/path/to/file.xml params[:splat] # => ["path/to/file", "xml"] end
这是否存在于南希?
答案 0 :(得分:3)
这在文档中有所介绍 - 看一下贪婪的节点:
https://github.com/NancyFx/Nancy/wiki/Defining-routes