ViewModel 内的 MVC3 RouteUrl
我需要根据参数创建一个路由 URL 作为 JSON 返回值的一部分。
与 Url.RouteUrl 等效但在控制器代码内部使用的是什么, 因此,我可以在 Json 结果中返回一个包含 routerurl 的字符串。
我需要在控制器类之外、在一个单独的类中完成此操作,这可以完成吗?
I need to create a route URL based on parameters as a part of a JSON return values.
What is the equivalent of Url.RouteUrl but to be used inside the controller code,
So I can return a string in my Json result that contains the routeurl .
I need this done outside of the controller class, in a separate class, can this be done at all?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您仍然可以使用
Url.RouteUrl
,但方式略有不同。将
using System.Web.Mvc;
放在类的顶部(当然,您可能需要添加对 System.Web.Mvc 的引用)。然后通过以下方式获取 Url 对象
并照常访问:
Url.RouteUrl
。You can still use
Url.RouteUrl
, but in a slightly different way.Place a
using System.Web.Mvc;
at the top of your class (of course, you might need to Add Reference to System.Web.Mvc).Then get the Url object by:
and access as usual:
Url.RouteUrl
.