asp.net – MVC4 – ContextDependentView – 这是什么意思?

前端之家收集整理的这篇文章主要介绍了asp.net – MVC4 – ContextDependentView – 这是什么意思?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我刚刚开始使用MVC4,我看到的第一个动作方法有新的东西.我检查了互联网,找不到任何关于这个:
public ActionResult logon()
        {
            return ContextDependentView();
        }

有谁知道ContextDependentView是什么?

对我来说新鲜事

解决方法

这是为了方便查看或PartialView操作结果的登录注册操作.
private ActionResult ContextDependentView()
    {
        string actionName = ControllerContext.RouteData.GetrequiredString("action");
        if (Request.QueryString["content"] != null)
        {
            ViewBag.FormAction = "Json" + actionName;
            return PartialView();
        }
        else
        {
            ViewBag.FormAction = actionName;
            return View();
        }
    }

像MVC中的其他东西一样,它是通过惯例完成的…这里的约定是当Request.QueryString包含一个?content = xxxx时,它为操作名称添加“Json”,并将其添加到ViewBag属性中,并返回部分版本风景.例如:

请求/ Account / Login?content = test将被解析为ViewBag.FormAction =“JsonLogin”;然后返回一个部分.

对/ Account / Login的请求没有内容查询字符串,因此其表单操作仍然是ViewBag.FormAction =“Login”;

原文链接:https://www.f2er.com/aspnet/246338.html

猜你在找的asp.Net相关文章