zoukankan      html  css  js  c++  java
  • asp.net core的输入模型验证

    数据验证特性
    RequiredAttribute:表示数据不能为空
    RegularExpressionAttribute:正则校验
    CompareAttribute:和某个属性比较
    RangeAttribute:表示在某个区间之内
    MaxAttribute:最大值
    MinAttribute:最小值
    StringLengthAttribute:验证字符串长度
    DataTypeAttribute:验证数据类型
    在Models页面下面新建实体类UserInfo.cs

    using System.ComponentModel.DataAnnotations;

    namespace WebApplication1.Models
    {
      public class UserInfo
      {
        [Required(ErrorMessage ="用户名不能为空")]
        [StringLength(10,ErrorMessage ="密码的长度不能超过10位")]
        public string Username { set; get; }
        [StringLength(6)]
        public string Password { set; get; }
      }
    }

    在控制器里面也添加校验

    using Microsoft.AspNetCore.Mvc;
    using WebApplication1.Models;

    namespace WebApplication1.Controllers
    {
      public class TestController : Controller
      {
        public IActionResult Index()
        {
          return View();
        }
        public IActionResult PostData(UserInfo userInfo)
        {
          // 服务端数据验证
          if (ModelState.IsValid)
          {
            return Content("数据有效");
          }
          return Content("数据无效");
        }
      }
    }

  • 相关阅读:
    【数据分析】6 点发的文章在博客园阅读量最高?
    canvas api 速记
    leetcode 315. Count of Smaller Numbers After Self 两种思路
    一道闭包题题解
    一道经典JS题(关于this)
    HTML5 — 让拖放变的流行起来
    你应该知道的25道Javascript面试题
    关于base64编码的原理和实现
    Python中的None
    Python字符编码和转码
  • 原文地址:https://www.cnblogs.com/bruce1992/p/15085194.html
Copyright © 2011-2022 走看看