asp.net MVC4 web API 非常简单的登录

上一篇:asp.net MVC2 非常简单的登录 https://blog.csdn.net/u012319493/article/details/88992791

感觉 web API 与 MVC 一样,都有 M、V、C,但区别如下:

  1. MVC 中,C 继承 Controller;web API 中,C 继承 ApiController。
  2. MVC 中,C 中的 Action 名没有要求;web API 中,C 中的 Action 以 Post、Get、Put、Delete 开头,或者打上接受动词标签 HttpPos、 HttpGet。
  3. MVC 中,C 返回 V; web API 中,C 不返回 V。
  4. MVC 中,页面跳转由 C 控制;web API 中,可在 V 上实现页面跳转,但需要借助于 MVC 中的 C。
  5. web API 中,V 与 C 的分离更为彻底一些

asp.net MVC4 web API 非常简单的登录_第1张图片

程序目录:
asp.net MVC4 web API 非常简单的登录_第2张图片
说明:本程序为省事,将 BLL 也写在了 M 中,但 DAL 在上图的目录 DB 中。

M

LoginModel.cs:查询数据库,验证用户名、密码是否正确。

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel;
using System.Collections;
using System.Data;

namespace LTE_MVC.Models
{
    public class LoginModel
    {
        ///  
        /// 用户名 
        ///    
        public string userName { get; set; }
        ///  
        /// 密码 
        ///  
        [DisplayName("密码")]
        public string userPwd { get; set; }

        /// 
        /// 检查用户是否合法
        /// 
        /// 用户名
        /// 密码
        /// 用户所属城市名
        /// 真 OR 假
        public static bool CheckUser(string name, string pwd)
        {
            //return true;
            //判断用户名密码以及地市名是否匹配
            try
            {
                Hashtable ht = new Hashtable();
                ht["name"] = name;
                ht["pwd"] = pwd;
                // Ibatis 数据访问 DAL,自己写的类,较为底层,不列出
                DataTable dt = DB.IbatisHelper.ExecuteQueryForDataTable("getUser", ht); 
                if (dt.Rows.Count == 0)
                {
                    return false;
                }
                else
                {
                    return true;
                }
            }
            catch (System.Data.SqlClient.SqlException err)
            {
                if (err.Message.IndexOf("连接超时") != -1)
                {
                    return false;
                }
                else if (err.Message.IndexOf("侦听") != -1)
                {
                    return false;
                }
                else
                {
                    return false;
                }
            }
            catch (System.Exception err)
            {
                return false;
            }
        }
    }
}

C

HomeController.cs:控制页面跳转。

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;

namespace MvcWebAPI.Controllers
{
    public class HomeController : Controller
    {
        //
        // GET: /Home/

        public ActionResult Index()
        {
            return View();
        }

        public ActionResult Login()
        {
            return View();
        }
    }
}

LoginController.cs:获取页面数据,调用模型中的验证逻辑。

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Net;
using System.Net.Http;
using System.Web.Http;
using LTE_MVC.Models;

namespace LTE_MVC.Controllers
{
    public class LoginController : ApiController
    {
        // POST api/login
        /// 
        /// 验证登陆
        /// 
        /// 
        [HttpPost]
        public bool Post([FromBody]LoginModel user)
        {
            return LoginModel.CheckUser(user.userName, user.userPwd);
        }
    }
}

V

index.chtml

@{
    Layout = null;
}





    
    Index


    

login.chtml

@{
    Layout = null;
}





    
    Login


    

用户登录

用户名:

密码:


结果

初始页面:
在这里插入图片描述
点击登录后:
asp.net MVC4 web API 非常简单的登录_第3张图片
登录成功:
asp.net MVC4 web API 非常简单的登录_第4张图片
登录失败:
asp.net MVC4 web API 非常简单的登录_第5张图片

参考

ASP.NET WEB API入门实例 https://blog.csdn.net/qq_36456952/article/details/62885273
C#进阶系列——WebApi 接口返回值不困惑:返回值类型详解 https://www.cnblogs.com/landeanfen/p/5501487.html

你可能感兴趣的:(C#)