ASP.NETではformフォーム要素をエンティティオブジェクトまたはコレクションに変換する

4902 ワード

概要:
WEBFROMの開発をする学友はすべてバックグラウンドがパラメータを受け取るのがとても面倒なことを知っています
MVCではフォームを直接集実に変換できますが、フォームをLISTに変換することはサポートされていません.
個々のオブジェクトの使用方法:
フォーム:
 
  



バックグラウンド:
 
  
//
            DLC_category d = new DLC_category();
            d.sex = Request["sex"];
            d.id = Convert.ToInt32(Request["id"]);


            //
            var category = RequestToModel.GetSingleForm();


集合オブジェクトの使用方法:
フォーム:
 
  


 
 


 



バックグラウンド:
 
  
  List categoryLists = RequestToModel.GetListByForm();

ソース:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
 
namespace SyntacticSugar
{
  /// 
  /// **   :     
  /// **     :2015-4-17
  /// **     :-
  /// **   :sunkaixuan
  /// ** qq:610262374     ,     ,                       
  /// 
  public class RequestToModel
  {
 
    /// 
    ///              
    ///   :    name             ,     
    /// 
    public static T GetSingleForm() where T : new()
    {
      T t = SetList(null, 0).Single();
      return t;
    }
 
 
    /// 
    ///              
    ///   :    name             ,     
    ///     ,   name="form1.sex" appstr    form1
    /// 
    public static T GetSingleForm(string appstr) where T : new()
    {
      T t = SetList(appstr, 0).Single();
      return t;
    }
 
    /// 
    ///               
    ///   :    name             ,     
    /// 
    /// 
    /// 
    /// 
    public static List GetListByForm() where T : new()
    {
      List t = SetList(null, 0);
      return t;
    }
 
    /// 
    ///               
    ///   :    name             ,     
    /// 
    /// 
    ///     ,   name="form1.sex" appstr    form1
    /// 
    public static List GetListByForm(string appstr) where T : new()
    {
      List t = SetList(appstr, 0);
      return t;
    }
 
 
    /// 
    ///               
    /// 
    /// 
    ///     ,   name="form1.sex" appstr    form1
    ///           ,              ,             
    /// 
    private static List GetListByForm(string appstr, int index) where T : new()
    {
      List t = SetList(appstr, index);
      return t;
    }
 
 
 
    private static List SetList(string appendstr, int index) where T : new()
    {
      List t = new List();
      try
      {
        var properties = new T().GetType().GetProperties();
        var subNum = System.Web.HttpContext.Current.Request[appendstr + properties[index].Name].Split(',').Length;
        for (int i = 0; i < subNum; i++)
        {
          var r = properties;
          var model = new T();
          foreach (var p in properties)
          {
            string pval = System.Web.HttpContext.Current.Request[appendstr + p.Name + ""];
            if (!string.IsNullOrEmpty(pval))
            {
              pval = pval.Split(',')[i];
              string pptypeName = p.PropertyType.Name;
              p.SetValue(model, Convert.ChangeType(pval, p.PropertyType), null);
            }
          }
          t.Add(model);
        }
      }
      catch (Exception ex)
      {
 
 
        throw ex;
      }
 
 
      return t;
    }
  }
}