在模型中渲染 Url.Action

发布于 2024-08-26 09:38:49 字数 86 浏览 6 评论 0原文

我怎样才能在模型或控制器中做这样的事情?

<%= Url.Action("Home"); %>

how can i do such thing in model or controller?

<%= Url.Action("Home"); %>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

幸福不弃 2024-09-02 09:38:49

您可以使用 Url 属性在控制器中:

public ActionResult Index()
{
    string url = Url.Action("Home");
    // Do something with the url
    return View();
}

就模型而言,您应该避免在那里使用此类方法。模型被传递到视图,视图可以访问可以完成这项工作的辅助方法。

You could use the Url property in the controller:

public ActionResult Index()
{
    string url = Url.Action("Home");
    // Do something with the url
    return View();
}

As far as the model is concerned you should avoid using such methods there. The model is passed to the view and the view has access to helper methods which can do the job.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文