加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 百科 > 正文

c# – 控制器功能上方的自定义属性

发布时间:2020-12-15 08:11:50 所属栏目:百科 来源:网络整理
导读:我想将[FirstTime]属性置于控制器函数之上,然后创建一个FirstTimeAttribute,它具有一些逻辑,用于检查用户是否输入了他的名字,如果没有,则将其重定向到/ Home / FirstTime. 所以不要做: public ActionResult Index(){ // Some major logic here if (...) ret
我想将[FirstTime]属性置于控制器函数之上,然后创建一个FirstTimeAttribute,它具有一些逻辑,用于检查用户是否输入了他的名字,如果没有,则将其重定向到/ Home / FirstTime.

所以不要做:

public ActionResult Index()
{
    // Some major logic here
    if (...)
        return RedirectToAction("FirstTime","Home");

    return View();
}

我会这样做:

[FirstTime]
public ActionResult Index()
{
    return View();
}

这可能吗?

解决方法

当然.做点什么
public class FirstTimeAttribute : ActionFilterAttribute
{
    public override void OnActionExecuting(ActionExecutingContext filterContext)
    {
        if(filterContext.HttpContext.Session != null)
        {
          var user = filterContext.HttpContext.Session["User"] as User;
          if(user != null && string.IsNullOrEmpty(user.FirstName))
              filterContext.Result = new RedirectResult("/home/firstname");
          else
          {
              //what ever you want,or nothing at all
          }
         }
    }
}

只需对您的操作使用[FirstTime]属性即可

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读