• 首页 首页 icon
  • 工具库 工具库 icon
    • IP查询 IP查询 icon
  • 内容库 内容库 icon
    • 快讯库 快讯库 icon
    • 精品库 精品库 icon
    • 问答库 问答库 icon
  • 更多 更多 icon
    • 服务条款 服务条款 icon

.NET MVC用Ajax实现发送手机短信验证码

武飞扬头像
Chen 416
帮助2

本次实验基于上次的.net aspx的手机实现短信验证。

本次实验大致过程是:

1.用户在页面输入手机号码进行注册

2.如果手机号已经存在了就会提示已经注册过了
3. 用户点击"发送验证码"按钮,把手机号码发送给服务端,服务端产生6位数的随机码
4.第三方发送6位数的随机码至用户手机
5. 用户在页面输入接收到的短信验证码
6. 把随机码等发送给服务端,与服务端保存的随机码比较,如果一致,就通过,让注册

这里做实验,就搭建一个简单的界面,如下:

学新通

我们需要考虑的方面包括:

● 手机号码:判断手机号码的合法性,与数据库中已有的手机号码比较,判断是否有重复,等等(这里就不做手机号码合法性的判断了,很简单写个正则表达就好,也可以用其他方法)
● "获取短信验证码"按钮:点击后,禁用它,再来一个比如60秒的倒计时,倒计时结束恢复使用
● "提交"按钮:在提交之前需要判断表单是否验证通过,以及验证码是否通过

要实现发送验证码,前期就要做好准备,这里的用的是通讯云服务给的接口

做好前期准备,我们需要申请公众号和腾讯云服务的操作,在这里就不演示了,请进入我之前写的文章里把基本的都搭建好 在进行下一步(一定要把公众号和腾讯云都弄好) http://t.csdn.cn/KapyY

现在可以开始实验:

首先先创建好一个MVC项目,创建一个自己的控制器,找到文件夹Controllers--->右键--->添加控制器 取名UserController(可以自己取名)

然后找到Model文件夹连接数据库 也就是EF,右键-->新建项-->ADO.NET实体数据模型

把你的数据库连接好,这里是模拟用户登录 所以自己选择自己的表用就好

进入UserController控制器界面

 学新通

 添加Index视图,进入视图页

直接上代码吧 做了注释

  1.  
    <head>
  2.  
    <meta name="viewport" content="width=device-width" />
  3.  
    <script src="~/Scripts/jquery-3.4.1.min.js"></script>
  4.  
    <title>Index</title>
  5.  
    </head>
  6.  
    <body>
  7.  
    @using (Html.BeginForm())
  8.  
    {
  9.  
    <div>
  10.  
    手机号:@Html.TextBox("username")
  11.  
    <input type="button" value="发送验证码" id="btn" onclick="Checkname()" />
  12.  
    <br />
  13.  
    验证码:<input type="text" name="Yzm" value="" placeholder="输入验证码" />
  14.  
    <span id="msg"> </span>
  15.  
    <span>@ViewBag.tx</span>
  16.  
    <br />
  17.  
    <input type="submit" name="sub" value="提交" />
  18.  
    </div>
  19.  
    }
  20.  
    <script type="text/javascript">
  21.  
    function Checkname() {
  22.  
    jQuery.ajax({
  23.  
    url: "/User/Validate",
  24.  
    type: "GET",
  25.  
    data: { "username": $("#username").val() },/*数据源,username获取控制器的值和前台文本的id值*/
  26.  
    success: function (data) {
  27.  
    if (data == "false") {
  28.  
    $("#msg").html("<font color='red'>手机号已存在!</font>");
  29.  
    }
  30.  
    else { /*否则就代表手机号在数据库中不存在,就可以发送验证码并且实现按钮60秒倒计时*/
  31.  
    $("#msg").html("<font></font>");
  32.  
    var count = 60; //计时开始
  33.  
    var t; //时间间隔种子
  34.  
    //关于按钮
  35.  
    var $getCodeBtn = $('#btn');
  36.  
    t = setInterval(function () {
  37.  
    $getCodeBtn.val(count "秒之后重新获取");
  38.  
    $getCodeBtn.prop('disabled', true);
  39.  
    count--;
  40.  
    if (count == 0) {
  41.  
    clearInterval(t);
  42.  
    $getCodeBtn.prop('disabled', false);
  43.  
    $getCodeBtn.val("点击获取验证码");
  44.  
    count = 3;
  45.  
    }
  46.  
    }, 1000);
  47.  
    }
  48.  
    },
  49.  
    error: function (xhr, error, ex) {
  50.  
    $("#msg").html("<font color='red'>系统出现异常,请联系客服!</font>");
  51.  
    }
  52.  
    });
  53.  
    }
  54.  
    </script>
  55.  
     
  56.  
    </body>

写好后进入控制器,记得导入 TencentCloud到项目中(TencentCloud这个包在腾讯云里,需要自己去找并且下载好)

学新通

然后找到TencentCloud里面的Send.cs文件打开:

学新通

 打开后按照注释填写自己的相关内容即可

  1.  
    /// <summary>
  2.  
    /// 发送短信
  3.  
    /// </summary>
  4.  
    /// <param name="PhoneNumber">发送手机</param>
  5.  
    /// <param name="code">验证码</param>
  6.  
    /// <param name="Time">有效时间</param>
  7.  
    public static void SendDL(string[] PhoneNumber, string code, int Time)
  8.  
    {
  9.  
    try
  10.  
    {
  11.  
    Credential cred = new Credential
  12.  
    {
  13.  
    SecretId = "", //在腾讯云官网中的“云产品”中找到“访问秘钥”,点击打开,就看得到相关ID和Key,复制填写即可
  14.  
    SecretKey = ""
  15.  
    };
  16.  
    ClientProfile clientProfile = new ClientProfile();
  17.  
    HttpProfile httpProfile = new HttpProfile();
  18.  
    httpProfile.Endpoint = ("sms.tencentcloudapi.com");
  19.  
    clientProfile.HttpProfile = httpProfile;
  20.  
    SmsClient client = new SmsClient(cred, "", clientProfile);
  21.  
    SendSmsRequest req = new SendSmsRequest();
  22.  
    req.PhoneNumberSet = PhoneNumber;
  23.  
    req.TemplateID = "";//创建正文模板ID
  24.  
    req.SmsSdkAppid = "";//在腾讯云官网中的短信里面找到应用管理里面的应用列表复制里面的SDKAPPid
  25.  
    req.Sign = "";//您的签名管理的签名内容的名字
  26.  
    req.TemplateParamSet = new String[] { code, Time.ToString() };
  27.  
    SendSmsResponse resp = client.SendSmsSync(req);
  28.  
     
  29.  
     
  30.  
    }
  31.  
    catch (Exception e)
  32.  
    {
  33.  
    Console.WriteLine(e.ToString());
  34.  
    }
  35.  
     
  36.  
    return;
  37.  
    }

找到model右键添加一个类,取名为PhoneTool

把这段代码复制过去

  1.  
    public class PhoneTool
  2.  
    {
  3.  
    public static string CreateRandomCode(int codeCount)
  4.  
    {
  5.  
    StringBuilder randomCode = new StringBuilder();
  6.  
    Random rand = new Random();
  7.  
    for (int i = 0; i < codeCount; i )
  8.  
    {
  9.  
    randomCode.Append(rand.Next(10));
  10.  
    }
  11.  
    return randomCode.ToString();
  12.  
    }
  13.  
    }

 以上完成后,整体代码如下:

  1.  
    using System;
  2.  
    using System.Collections.Generic;
  3.  
    using System.Linq;
  4.  
    using System.Web;
  5.  
    using Ajax_01.Models;
  6.  
    using System.Web.Mvc;
  7.  
    using System.Collections;
  8.  
    using TencentCloud.Common;
  9.  
    using TencentCloud.Common.Profile;
  10.  
    using TencentCloud.Cr.V20180321.Models;
  11.  
    using TencentCloud.Sms.V20190711;
  12.  
    using TencentCloud.Sms.V20190711.Models;
  13.  
    using System.Text;
  14.  
     
  15.  
    namespace Ajax_01.Controllers
  16.  
    {
  17.  
    public class UserController : Controller
  18.  
    {
  19.  
    // GET: User
  20.  
    public ActionResult Index()
  21.  
    {
  22.  
    return View();
  23.  
    }
  24.  
    public static string codes;//接受随机数的变量
  25.  
    public ActionResult Validate(string username)
  26.  
    {
  27.  
     
  28.  
    using (sqlEntities db = new sqlEntities())//数据库上下文对象
  29.  
    {
  30.  
    if (db.student.Where(u => u.Username == username).Count() > 0)//如果查询到用户手机号
  31.  
    {
  32.  
    return Content("false");//直接返回false,不做任何处理
  33.  
    }
  34.  
    else
  35.  
    {
  36.  
    int codeCount = 6;
  37.  
    string str = username;
  38.  
    codes = PhoneTool.CreateRandomCode(codeCount);
  39.  
    SendDL(new string[] { " 86" str }, codes, 10);
  40.  
    return Content("true");
  41.  
    }
  42.  
    }
  43.  
    }
  44.  
    [HttpPost]
  45.  
    public ActionResult Index(student stu)
  46.  
    {
  47.  
    using(sqlEntities db=new sqlEntities())
  48.  
    {
  49.  
    string sm = Request["Yzm"];
  50.  
    if (sm != codes)
  51.  
    {
  52.  
    ViewBag.tx = "验证码错误!";
  53.  
    return View();
  54.  
    }
  55.  
    else
  56.  
    {
  57.  
    db.student.Add(stu);//保存信息到数据库内
  58.  
    db.SaveChanges();
  59.  
    ViewBag.tx = "成功!";
  60.  
    return View();
  61.  
    }
  62.  
    }
  63.  
    }
  64.  
    /// <summary>
  65.  
    /// 这个是腾讯云的自带接口方法,里面的值填你自己的就好
  66.  
    /// </summary>
  67.  
    /// <param name="PhoneNumber"></param>
  68.  
    /// <param name="code"></param>
  69.  
    /// <param name="Time"></param>
  70.  
    public static void SendDL(string[] PhoneNumber, string code, int Time)
  71.  
    {
  72.  
    try
  73.  
    {
  74.  
    Credential cred = new Credential
  75.  
    {
  76.  
    SecretId = "", //在腾讯云官网中的“云产品”中找到“访问秘钥”,点击打开,就看得到相关ID和Key,复制填写即可
  77.  
    SecretKey = ""
  78.  
    };
  79.  
    ClientProfile clientProfile = new ClientProfile();
  80.  
    HttpProfile httpProfile = new HttpProfile();
  81.  
    httpProfile.Endpoint = ("sms.tencentcloudapi.com");
  82.  
    clientProfile.HttpProfile = httpProfile;
  83.  
    SmsClient client = new SmsClient(cred, "", clientProfile);
  84.  
    SendSmsRequest req = new SendSmsRequest();
  85.  
    req.PhoneNumberSet = PhoneNumber;
  86.  
    req.TemplateID = "";//创建正文模板ID
  87.  
    req.SmsSdkAppid = "";//在腾讯云官网中的“云产品”中找到“访问秘钥”,点击打开,就会有一个APPID,复制填写即可
  88.  
    req.Sign = "";//您的公众号名字
  89.  
    req.TemplateParamSet = new String[] { code, Time.ToString() };
  90.  
    SendSmsResponse resp = client.SendSmsSync(req);
  91.  
    }
  92.  
    catch (Exception e)
  93.  
    {
  94.  
    Console.WriteLine(e.ToString());
  95.  
    }
  96.  
     
  97.  
    return;
  98.  
    }
  99.  
    }
  100.  
    }

如有问题,可联系我~

这篇好文章是转载于:学新通技术网

  • 版权申明: 本站部分内容来自互联网,仅供学习及演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,请提供相关证据及您的身份证明,我们将在收到邮件后48小时内删除。
  • 本站站名: 学新通技术网
  • 本文地址: /boutique/detail/tanhckejji
系列文章
更多 icon
同类精品
更多 icon
继续加载