ASP.NET 에서 form 폼 요 소 를 실체 대상 또는 집합 으로 전환 합 니 다.

프로필:
WEBFrom 개발 을 하 시 는 분 들 은 백 스테이지 에서 파 라 메 터 를 받 는 게 귀 찮 은 거 아 시 잖 아 요.
MVC 에 서 는 폼 을 직접 집합 으로 바 꿀 수 있 지만,폼 을 LIST로 바 꾸 는 것 은 지원 되 지 않 습 니 다.
단일 개체 의 용법:
폼:

<input name='id'  value='1' >
<input name='sex'  value=' ' >
배경:

//
            DLC_category d = new DLC_category();
            d.sex = Request["sex"];
            d.id = Convert.ToInt32(Request["id"]);


            //
            var category = RequestToModel.GetSingleForm<DLC_category>();

집합 대상 의 용법:
폼:

<input name='id'  value='1' >
<input name='sex'  value=' ' >
 
 
<input name='id'  value='2' >
<input name='sex'  value=' ' >
 
<input name='id'  value='3' >
<input name='sex'  value=' ' >
배경:

  List<DLC_category> categoryLists = RequestToModel.GetListByForm<DLC_category>();
원본 코드:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
 
namespace SyntacticSugar
{
  /// <summary>
  /// **   :     
  /// **     :2015-4-17
  /// **     :-
  /// **   :sunkaixuan
  /// ** qq:610262374     ,     ,                       
  /// </summary>
  public class RequestToModel
  {
 
    /// <summary>
    ///              
    ///   :    name             ,     
    /// </summary>
    public static T GetSingleForm<T>() where T : new()
    {
      T t = SetList<T>(null, 0).Single();
      return t;
    }
 
 
    /// <summary>
    ///              
    ///   :    name             ,     
    /// <param name="appstr">    ,   name="form1.sex" appstr    form1</param>
    /// </summary>
    public static T GetSingleForm<T>(string appstr) where T : new()
    {
      T t = SetList<T>(appstr, 0).Single();
      return t;
    }
 
    /// <summary>
    ///               
    ///   :    name             ,     
    /// </summary>
    /// <typeparam name="type"></typeparam>
    /// <param name="type"></param>
    /// <returns></returns>
    public static List<T> GetListByForm<T>() where T : new()
    {
      List<T> t = SetList<T>(null, 0);
      return t;
    }
 
    /// <summary>
    ///               
    ///   :    name             ,     
    /// </summary>
    /// <typeparam name="type"></typeparam>
    /// <param name="appstr">    ,   name="form1.sex" appstr    form1</param>
    /// <returns></returns>
    public static List<T> GetListByForm<T>(string appstr) where T : new()
    {
      List<T> t = SetList<T>(appstr, 0);
      return t;
    }
 
 
    /// <summary>
    ///               
    /// </summary>
    /// <typeparam name="type"></typeparam>
    /// <param name="appstr">    ,   name="form1.sex" appstr    form1</param>
    /// <typeparam name="index">          ,              ,             </typeparam>
    /// <returns></returns>
    private static List<T> GetListByForm<T>(string appstr, int index) where T : new()
    {
      List<T> t = SetList<T>(appstr, index);
      return t;
    }
 
 
 
    private static List<T> SetList<T>(string appendstr, int index) where T : new()
    {
      List<T> t = new List<T>();
      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;
    }
  }
}

좋은 웹페이지 즐겨찾기