前言前面第一篇开了头个,现在想先从登陆写起,但感觉还有很多东西应该放在前面写,比如1、MVC及Web API的Route配置,Web API的Route配置如何支持命名空间2、如何配置Filters(实现安全验证、错误处理等等)3、自定义Filters、HttpRouteConstraint、ModelBinder及HttpParameterBinding等这些问题在我开发过程中都有碰到,但感觉每一点都要说太多了。
如果有需要到时候再回过头来写。需求还是老样子,我们先要明白要登陆实现哪些东西:1、登陆页面(用户名、密码、记住我、登陆按钮、重置按钮)2、消息显示(比如 错误时显示某某错误,登陆时显示正在登陆,登陆成功显示正在跳转等)3、登陆处理(验证、登陆、正在登陆时禁用表单、更新用户登陆次数及时间、添加登陆履历其中要包括用户的内网IP外网IP还有所在城市、其它业务处理)4、成功跳转实现效果在实现之前我们先看看实现出来的效果截图登陆页面跳转页面登陆履历需求分析及实现需求中基本都好实现,只有登陆履历中要记录内外网IP及所在城市要考虑一下。
在asp。NET中取得客户端内外网IP还是比较麻烦的,而要取得所在城市就基本不可能了,所以我们只好考虑借助第三方api去实现了。1、内网IP直接在后台取2、外网IP可以通过新浪API http://counter。sina。com。cn/ip 取得,原来也可以返回城市的,后台不知道什么原因,只能返回IP了3、所在城市通过百度API http://api。
map。baidu。com/location/ip?ak=&ip=取得,但是这个不会返回外网IP所以我就两个一起用了,挺蛋疼的。以上在客户端去访问相应的API又存在一个跨域的问题,通过调查发现百度API支持JSONP,可以很好的解决跨域的问题,新浪API不支持但它返回一个变量,我们可以直接把新浪API写在页面srcipt中即可取得相应变量。
技术都应该没问题了,那我们开始写吧。具体实现第一步:在MVC中新建LoginController添加如下代码using System;using System。Web。Mvc;using Newtonsoft。Json;using Newtonsoft。
Json。Linq;using Zephyr。Core;using Zephyr。Models;using Zephyr。Web。Areas。Mms。Common;namespace Zephyr。Controllers{ [AllowAnonymous] public class LoginController : Controller { public ActionResult Index() { ViewBag。
CnName = “建筑材料管理系统”; ViewBag。EnName = “Engineering Material Mangange System”; return View(); } }}类要用AllowAnonymous属性修饰,才能保证未登陆也能够访问。
第二步:添加对应的View,添加~/Views/Login/Index。cshtml,代码如下@{ ViewBag。Title = “登录系统”; Layout = null;}<doctype html><html> <head> <title>@ViewBag。
Title</title> <link href=”~/Content/css/page/login。css” rel=”stylesheet” type=”text/css” /> <script src=”~/Content/js/jquery/jquery-1。
8。1。min。js”></script> <script src=”~/Content/js/core/json2。js”></script> <script src=”~/Content/js/core/knockout-2。
2。1。js”></script> <script src=”~/Content/js/viewModel/login。js”></script> <script src=”http://counter。
sina。com。cn/ip”></script> </head> <body> <div>png” alt=”” /></div> <div>EnNameStyle”>@ViewBag。EnName</div> <div>usercode” /></td> </tr> <tr> <td>password” /></td> </tr> <tr> <td></td> <td colspan=”2″><input type=”checkbox” data-bind=”checked:form。
remember” /><span>系统记住我</span></td> </tr> <tr> <td colspan=”3″>30。94。103″,”保留地址”, “”, “”, “”); if (typeof(ILData_callback) != “undefined”) { ILData_callback(); }它其实也有一个callback函数,和JSONP类似,但函数名是固定的,并且没有传递数据。
我们可以直接访问ILData[0]取得外网IP。2、上面html中的data-bind=””写法为knouckoutjs的写法,用于绑定到viewModel的属性第三步:创建ViewModelvar viewModel = function () { var self = this; this。
form = { usercode: ko。observable(), password: ko。observable(), remember:ko。observable(false), ip: null, city: null }; this。
message = ko。observable(); this。loginClick = function (form) { $。ajax({ type: “POST”, url: “/login/doAction”, data: ko。toJSON(self。
form), dataType: “json”, contentType: “application/json”, success: function (d) { if (d。status == ‘success’) { self。message(“登陆成功正在跳转,请稍候。
“); window。location。href = ‘/’; } else { self。message(d。message); } }, error: function (e) { self。message(e。responseText); }, beforeSend: function () { $(form)。
find(“input”)。attr(“disabled”, true); self。message(“正在登陆处理,请稍候。”); }, complete: function () { $(form)。find(“input”)。attr(“disabled”, false); } }); }; this。
resetClick = function () { self。form。usercode(“”); self。form。password(“”); self。form。remember(false); }; this。init = function () { self。
form。ip = ILData[0]; $。getJSON(“http://api。map。baidu。com/location/ip?ak=F454f8a5efe5e577997931cc01de3974&callback=?”, function (d) { self。
form。city = d。content。address; }); if (top != window) top。window。location = window。location; }; this。init();};$(function () { ko。
applyBindings(new viewModel());});定义viewModel,其属性包括from表单信息,message提示信息,loginClick登陆,resetClick重置。其中的init部分其实可以不放到viewModel中。
1、$。getJSON即为JSONP的访问,其中加上了参数callback=?jQuery会自动处理成当前的回调函数,即跨域成功后会自动回调当前函数并传入数据。我们用viewModel中的form。city接收请求的数据中的城市信息。
2、最后一句ko。applyBindings(new viewModel())即实现了页面和viewModel的绑定,至此,前台全部完成。接下来写登陆处理doAction,还是放在LoginController中,访问地址为/login/doAction。
第四步:在LoginController中添加doAction的方法返回JSON数据。代码如下:public JsonResult DoAction(JObject request){ var message = new sys_userService()。
Login(request); return Json(message, JsonRequestBehavior。DenyGet);}然后在service层中处理using System;using System。Collections。Generic;using Zephyr。
Core;using System。Dynamic;using Newtonsoft。Json。Linq;using Newtonsoft。Json;using Zephyr。Utils;using Zephyr。Web。Areas。Mms。
Common;namespace Zephyr。Models{ public class sys_userService : ServiceBase<sys_user> { public object Login(JObject request) { var UserCode = request。
Value<string>(“usercode”); var Password = request。Value<string>(“password”); //用户名密码检查 if (String。IsNullOrEmpty(UserCode) || String。
IsNullOrEmpty(Password)) return new { status = “error”, message = “用户名或密码不能为空!” }; //用户名密码验证 var result = this。GetModel(ParamQuery。
Instance() 。AndWhere(“UserCode”, UserCode) 。AndWhere(“Password”, Password) 。AndWhere(“IsEnable”, true)); if (result == null || String。
IsNullOrEmpty(result。UserCode)) return new { status = “error”, message = “用户名或密码不正确!” }; //调用框架中的登陆机制 var loginer = new LoginerBase { UserCode = result。
UserCode, UserName = result。UserName }; FormsAuth。SignIn(loginer。UserCode, loginer, 60 * 8); //登陆后处理 this。UpdateUserLoginCountAndDate(UserCode); //更新用户登陆次数及时间 this。
AppendLoginHistory(request); //添加登陆履历 MmsService。LoginHandler(request); //MMS系统的其它的业务处理 //返回登陆成功 return new { status = “success”, message = “登陆成功!” }; } //更新用户登陆次数及时间 public void UpdateUserLoginCountAndDate(string UserCode) { db。
Sql(@”update sys_userset LoginCount = isnull(LoginCount,0) + 1 ,LastLoginDate = getdate()where UserCode = @0 ” , UserCode)。
Execute(); } //添加登陆履历 public void AppendLoginHistory(JObject request) { var lanIP = ZHttp。ClientIP; var hostName = ZHttp。
IsLanIP(lanIP) ? ZHttp。ClientHostName : string。Empty; //如果是内网就获取,否则出错获取不到,且影响效率 var UserCode = request。Value<string>(“usercode”); var UserName = MmsHelper。
GetUserName(); var IP = request。Value<string>(“ip”); var City = request。Value<string>(“city”); if (IP != lanIP) IP = string。
Format(“{0}/{1}”, IP, lanIP)。Trim(‘/’)。Replace(“:1”, “localhost”); var item = new sys_loginHistory(); item。UserCode = UserCode; item。
UserName = UserName; item。HostName = hostName; item。HostIP = IP; item。LoginCity = City; item。LoginDate = DateTime。Now; db。
Insert<sys_loginHistory>(“sys_loginHistory”, item)。AutoMap(x => x。ID)。Execute(); } }}接收参数定义为JObject对象比较方便取得请求数据,数据服务中的GetModel是服务基类中已有的方法,这当中用到了两个函数,一个为UpdateUserLoginCountAndDate为更新用户登陆次数及时间的处理,另一个AppendLoginHistory添加登陆履历。
至此已大功告成!。
1.文章《Asp.net MVC利用knockoutjs实现登陆并记录用户的内外网IP及所在城市(推荐)》援引自互联网,为网友投稿收集整理,仅供学习和研究使用,内容仅代表作者本人观点,与本网站无关,侵删请点击页脚联系方式。
2.文章《Asp.net MVC利用knockoutjs实现登陆并记录用户的内外网IP及所在城市(推荐)》仅供读者参考,本网站未对该内容进行证实,对其原创性、真实性、完整性、及时性不作任何保证。
相关推荐
- . 现代买票为什么带上携程保险
- . 潮阳怎么去广州南站
- . 湖南马拉河怎么样
- . 烧纸为什么到三岔路口
- . 百色为什么这么热
- . 神州租车怎么样
- . 芜湖方特哪个适合儿童
- . 护肤品保养液是什么类目
- . 早晚的护肤保养有哪些项目
- . 女孩护肤品怎么保养的最好