ASP.NET 에서 Form 폼 필드 값 을 작업 모델 에 자동 으로 채 웁 니 다.

ASP.NET MVC 에 강력 한 점 이 있다 는 것 을 알 고 있 습 니 다.Form 폼 을 action 에 제출 할 때 Form 의 매개 변 수 를 action 의 매개 변수 실체 대상 에 직접 설치 할 수 있 습 니 다.
예 를 들 면

action Register(UserModel userModel)

{

   ............................. 

}

폼 을 제출 할 때 폼 안의 필드 를 해당 하 는 UserModel 필드 에 자동 으로 설명 합 니 다.
그럼 WebForm 에 도 자장 이 들 어 갈 수 있 을까요?
매번 데 이 터 를 얻어 야 하기 때문에 우수한 프로그래머 는 코드 패 키 징,코드 재 활용,중복 작업 을 하지 말 아야 합 니 다.
우 리 는 사실 반 사 를 이용 하여 대상 을 예화 할 수 있다(자동 조립).
됐어.잔말 말고...
pageload 안 은 쉬 워 요.

protected void Page_Load(object sender, EventArgs e)
        {
            if (!IsPost())
            {
                InitPage();//
            }
            else
            {
                UserModel userModel = AssembleModel<UserModel>(base.valueCollection);
            }
        }
관건 은 기본 클래스 의 AssembleModel 방법 입 니 다.
기류 내
우선 컨 텍스트 의 인자 IT 404 를 가 져 옵 니 다.

protected NameValueCollection valueCollection = HttpContext.Current.Request.Params;
기본 클래스 는 간단 합 니 다.컨 텍스트 에 제출 한 인 자 를 value Collection 에 저장 하 는 것 입 니 다.
그리고 AssembleModel 방법 을 보 겠 습 니 다.이것 은 일반적인 방법 입 니 다.

/// <summary>
        ///
        /// </summary>
        /// <param name="type"></param>
        /// <returns></returns>
        protected PropertyInfo[] GetPropertyInfoArray(Type type)
        {
            PropertyInfo[] props = null;
            try
            {
                object obj = Activator.CreateInstance(type);
                props = type.GetProperties(BindingFlags.Public | BindingFlags.Instance);
            }
            catch (Exception ex)
            {

            }
            return props;
        }

        /// <summary>
        /// NameValueCollection
        /// </summary>
        /// <typeparam name="T"></typeparam>
        /// <param name="valueCollection"></param>
        /// <returns></returns>
        protected T AssembleModel<T>(NameValueCollection valueCollection)
        {
            PropertyInfo[] propertyInfoList = GetPropertyInfoArray(typeof(T));
            object obj = Activator.CreateInstance(typeof(T), null);//
            foreach (string key in valueCollection.Keys)//
            {
                foreach (var PropertyInfo in propertyInfoList)//
                {
                    if (key.ToLower() == PropertyInfo.Name.ToLower())
                    {
                        PropertyInfo.SetValue(obj, valueCollection[key], null);//
                    }
                }
            }
            return (T)obj;
        }

간단 합 니 다.매개 변 수 를 옮 겨 다 니 고 실체 류 의 공유 속성 을 반사 적 으로 옮 겨 다 니 며 이름 name 에 따라 값 을 매 칭 합 니 다.
그래서 앞으로 우 리 는 코드 한 마디 만 있 으 면 클 라 이언 트 에서 저 장 된 값 을 자동 으로 조립 할 수 있 습 니 다.

UserModel userModel = AssembleModel<UserModel>(base.valueCollection);

좋은 웹페이지 즐겨찾기