中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Asp.net MVC如何對所有用戶輸入的字符串字段做Trim處理

發布時間:2021-07-30 14:41:31 來源:億速云 閱讀:125 作者:小新 欄目:開發技術

小編給大家分享一下Asp.net MVC如何對所有用戶輸入的字符串字段做Trim處理,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!

MVC4.6中實現方式

1,實現IModelBinder接口,創建自定義ModelBinder。

public class TrimModelBinder : IModelBinder
  {
    public object BindModel(ControllerContext controllerContext, ModelBindingContext bindingContext)
    {
      var valueResult = bindingContext.ValueProvider.GetValue(bindingContext.ModelName);
      string attemptedValue = valueResult?.AttemptedValue;

      return string.IsNullOrWhiteSpace(attemptedValue) ? attemptedValue : attemptedValue.Trim();
    }
  }

2,添加ModelBinder到MVC的綁定庫。

protected void Application_Start()
    {
      //System.Web.Mvc.ModelBinders.Binders.DefaultBinder = new ModelBinders.TrimModelBinder();
      System.Web.Mvc.ModelBinders.Binders.Add(typeof(string), new ModelBinders.TrimModelBinder());
      AreaRegistration.RegisterAllAreas();
      FilterConfig.RegisterGlobalFilters(GlobalFilters.Filters);
      RouteConfig.RegisterRoutes(RouteTable.Routes);
      BundleConfig.RegisterBundles(BundleTable.Bundles);
    }

3,確認一下效果

Asp.net MVC如何對所有用戶輸入的字符串字段做Trim處理

將密碼后面的空格做Trim處理,綁定到ViewModel的時候變成1了:

Asp.net MVC如何對所有用戶輸入的字符串字段做Trim處理

Asp.net core 1.1 MVC中實現方式

1,自定義ModelBinder并繼承ComplexTypeModelBinder

public class TrimModelBinder : ComplexTypeModelBinder
  {
    public TrimModelBinder(IDictionary propertyBinders) : base(propertyBinders) { }
 
    protected override void SetProperty(ModelBindingContext bindingContext, string modelName, ModelMetadata propertyMetadata, ModelBindingResult result)
    {
      var value = result.Model as string;
 
      result= string.IsNullOrWhiteSpace(value) ? result : ModelBindingResult.Success(value.Trim());
 
      base.SetProperty(bindingContext, modelName, propertyMetadata, result);
    }
  }

2,為ModelBinder添加自定義Provider

public class TrimModelBinderProvider : IModelBinderProvider
  {
    public IModelBinder GetBinder(ModelBinderProviderContext context)
    {
      if (context.Metadata.IsComplexType && !context.Metadata.IsCollectionType)
      {
        var propertyBinders = new Dictionary();
        for (int i = 0; i < context.Metadata.Properties.Count; i++)
        {
          var property = context.Metadata.Properties[i];
          propertyBinders.Add(property, context.CreateBinder(property));
        }
        return new TrimModelBinder(propertyBinders);
      }
      return null;
    }
  }

3,將Provider添加到綁定管理庫

services.AddMvc().AddMvcOptions(s =>
      {
        s.ModelBinderProviders[s.ModelBinderProviders.TakeWhile(p => !(p is ComplexTypeModelBinderProvider)).Count()] = new TrimModelBinderProvider();
      });

4,確認一下效果

Asp.net MVC如何對所有用戶輸入的字符串字段做Trim處理

將密碼后面的空格做Trim處理,綁定到ViewModel的時候變成1了:

Asp.net MVC如何對所有用戶輸入的字符串字段做Trim處理

以上是“Asp.net MVC如何對所有用戶輸入的字符串字段做Trim處理”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

曲阜市| 奉贤区| 新宾| 隆化县| 太谷县| 嘉荫县| 永康市| 富宁县| 溧阳市| 兴和县| 新龙县| 麻江县| 临漳县| 上高县| 丰台区| 新泰市| 江川县| 承德县| 左权县| 甘南县| 辽阳市| 黑河市| 南陵县| 连州市| 阳东县| 磐安县| 苍南县| 富宁县| 苏尼特右旗| 元谋县| 崇左市| 龙江县| 清涧县| 天峨县| 安泽县| 白银市| 连州市| 乳源| 临泉县| 镇原县| 镶黄旗|