添加asp.net mvc 3的路由
我需要能够处理这样的路线: appdomain/city/City-state,以防万一有人使用 appdomain/Washington/Washington-DC 他从正确的控制器操作中检索正确的信息。目前无法获取应该使用什么控制器和操作来获取此 url 并正确处理它。
为了澄清一点,这里没有控制器和动作,而是用 2 个参数代替它们。
I need to be able to hande routes like this:
appdomain/city/City-state, so in case somebody used
appdomain/Washington/Washington-DC he retrieves proper info from proper controller action. For now can`t get what controller and action it should be to get this url and handle it properly.
To clear it a bit, there`s like no controller and action, but 2 parameters instead of them.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
为什么不从固定路径添加一点帮助,例如 Show-City
这永远不会干扰您现有的路线,然后您可以使用:
在您的 Index
Action
内CitiesController
你会得到类似的东西:~Why not adding a little help from a fixed path, like Show-City
this will never interfere with your existing routes, and then you can use:
at your Index
Action
inside the CitiesController
you would have something like:~试试这个:
在你的课堂上你会:
Try this:
and in your class you'd have: