Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以从路由定义中访问 NancyContext?
我想要构建的是一个用于以如下方式接收参数的遗留请求的单一路由:
/points/upload?longitude=12.34&latitude=23.45
(而且我没有找到用模式指定这些参数的方法,因为南希似乎忽略了问号后面的任何内容。)
问号之后的所有内容都是查询字符串,您可以在路由内使用 Request.Query 属性访问这些字符串
Get["/points/upload"] = x => { var long = Request.Query.longitude; var lang = Request.Query.latitude; return 200; }