主頁(yè) > 知識(shí)庫(kù) > ASP.NET中實(shí)現(xiàn)把form表單元素轉(zhuǎn)為實(shí)體對(duì)象或集合

ASP.NET中實(shí)現(xiàn)把form表單元素轉(zhuǎn)為實(shí)體對(duì)象或集合

熱門標(biāo)簽:關(guān)于宗地圖標(biāo)注技術(shù)規(guī)范 t3出行地圖標(biāo)注怎么做 寧夏機(jī)器人電銷 外呼電銷機(jī)器人軟件 河南語(yǔ)音外呼系統(tǒng)公司 威海電銷 400電話辦理最優(yōu)質(zhì) 400免費(fèi)電話怎么辦理 河北網(wǎng)絡(luò)回?fù)芡夂粝到y(tǒng)

簡(jiǎn)介:

做WEBFROM開發(fā)的同學(xué)都知道后臺(tái)接收參數(shù)非常麻煩

雖然MVC中可以將表單直接轉(zhuǎn)為集實(shí),但不支持表單轉(zhuǎn)為 LISTT>這種集合

單個(gè)對(duì)象的用法:

表單:

復(fù)制代碼 代碼如下:

input name='id'  value='1' >
input name='sex'  value='男' >

后臺(tái):

復(fù)制代碼 代碼如下:

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


            //現(xiàn)在寫法
            var category = RequestToModel.GetSingleFormDLC_category>();

集合對(duì)象的用法:

表單:

復(fù)制代碼 代碼如下:

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='女' >

后臺(tái):
復(fù)制代碼 代碼如下:

  ListDLC_category> categoryLists = RequestToModel.GetListByFormDLC_category>();

源碼:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
 
namespace SyntacticSugar
{
  /// summary>
  /// ** 描述:表單幫助類
  /// ** 創(chuàng)始時(shí)間:2015-4-17
  /// ** 修改時(shí)間:-
  /// ** 作者:sunkaixuan
  /// ** qq:610262374 歡迎交流,共同提高 ,命名語(yǔ)法等寫的不好的地方歡迎大家的給出寶貴建議
  /// /summary>
  public class RequestToModel
  {
 
    /// summary>
    /// 提交表單通過反射獲取單個(gè)像
    /// 注意:表單控件name必包含對(duì)應(yīng)類中的第一個(gè)字段,否則將報(bào)錯(cuò)
    /// /summary>
    public static T GetSingleFormT>() where T : new()
    {
      T t = SetListT>(null, 0).Single();
      return t;
    }
 
 
    /// summary>
    /// 提交表單通過反射獲取單個(gè)像
    /// 注意:表單控件name必包含對(duì)應(yīng)類中的第一個(gè)字段,否則將報(bào)錯(cuò)
    /// param name="appstr">控件前綴,比如 name="form1.sex" appstr可以設(shè)為form1/param>
    /// /summary>
    public static T GetSingleFormT>(string appstr) where T : new()
    {
      T t = SetListT>(appstr, 0).Single();
      return t;
    }
 
    /// summary>
    /// 提交表單通過反射獲取多個(gè)對(duì)像
    /// 注意:表單控件name必包含對(duì)應(yīng)類中的第一個(gè)字段,否則將報(bào)錯(cuò)
    /// /summary>
    /// typeparam name="type">/typeparam>
    /// param name="type">/param>
    /// returns>/returns>
    public static ListT> GetListByFormT>() where T : new()
    {
      ListT> t = SetListT>(null, 0);
      return t;
    }
 
    /// summary>
    /// 提交表單通過反射獲取多個(gè)對(duì)像
    /// 注意:表單控件name必包含對(duì)應(yīng)類中的第一個(gè)字段,否則將報(bào)錯(cuò)
    /// /summary>
    /// typeparam name="type">/typeparam>
    /// param name="appstr">控件前綴,比如 name="form1.sex" appstr可以設(shè)為form1/param>
    /// returns>/returns>
    public static ListT> GetListByFormT>(string appstr) where T : new()
    {
      ListT> t = SetListT>(appstr, 0);
      return t;
    }
 
 
    /// summary>
    /// 提交表單通過反射獲取多個(gè)對(duì)像
    /// /summary>
    /// typeparam name="type">/typeparam>
    /// param name="appstr">控件前綴,比如 name="form1.sex" appstr可以設(shè)為form1/param>
    /// typeparam name="index">表單控件中第一個(gè)控件,對(duì)應(yīng)類中字段在該類中的索引號(hào),特殊情況可以是第二第三控件/typeparam>
    /// returns>/returns>
    private static ListT> GetListByFormT>(string appstr, int index) where T : new()
    {
      ListT> t = SetListT>(appstr, index);
      return t;
    }
 
 
 
    private static ListT> SetListT>(string appendstr, int index) where T : new()
    {
      ListT> t = new ListT>();
      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;
    }
  }
}

您可能感興趣的文章:
  • ASP.NET中實(shí)現(xiàn)把Json數(shù)據(jù)轉(zhuǎn)換為ADO.NET DataSet對(duì)象
  • ASP.NET自帶對(duì)象JSON字符串與實(shí)體類的轉(zhuǎn)換
  • .NET core高性能對(duì)象轉(zhuǎn)換示例代碼

標(biāo)簽:樂山 廣元 池州 淮北 賀州 吉林 固原 咸寧

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《ASP.NET中實(shí)現(xiàn)把form表單元素轉(zhuǎn)為實(shí)體對(duì)象或集合》,本文關(guān)鍵詞  ASP.NET,中,實(shí)現(xiàn),把,form,表單,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《ASP.NET中實(shí)現(xiàn)把form表單元素轉(zhuǎn)為實(shí)體對(duì)象或集合》相關(guān)的同類信息!
  • 本頁(yè)收集關(guān)于ASP.NET中實(shí)現(xiàn)把form表單元素轉(zhuǎn)為實(shí)體對(duì)象或集合的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章