[c#] MVC3 DropDownListFor-간단한 예?

DropDownListForMVC3 앱에 문제가 있습니다. StackOverflow를 사용하여 뷰에 표시하는 방법을 알아낼 수 있었지만 이제 제출할 때 뷰 모델의 해당 속성에서 값을 캡처하는 방법을 모릅니다. 이 작업을 수행하려면 ID와 값 속성이있는 내부 클래스를 만들어야 IEnumerable<Contrib>하고 DropDownListFor매개 변수 요구 사항 을 충족 하기 위해를 사용해야했습니다 . 그러나 이제 MVC FW는이 드롭 다운에서 선택한 값을 내 뷰 모델의 단순 문자열 속성으로 다시 매핑하는 방법을 알고 있습니까?

public class MyViewModelClass
{
    public class Contrib
    {
        public int ContribId { get; set; }
        public string Value { get; set; }
    }

    public IEnumerable<Contrib> ContribTypeOptions =
        new List<Contrib>
        {
            new Contrib {ContribId = 0, Value = "Payroll Deduction"},
            new Contrib {ContribId = 1, Value = "Bill Me"}
        };

    [DisplayName("Contribution Type")]
    public string ContribType { get; set; }
}

내보기에서 다음과 같이 페이지에 드롭 다운을 배치합니다.

<div class="editor-label">
    @Html.LabelFor(m => m.ContribType)
</div>
<div class="editor-field">
    @Html.DropDownListFor(m => m.ContribTypeOptions.First().ContribId,
             new SelectList(Model.ContribTypeOptions, "ContribId", "Value"))
</div>

양식을 제출할 때 ContribType(물론) null입니다.

이를 수행하는 올바른 방법은 무엇입니까?



답변

다음과 같이해야합니다.

@Html.DropDownListFor(m => m.ContribType,
                new SelectList(Model.ContribTypeOptions,
                               "ContribId", "Value"))

어디:

m => m.ContribType

결과 값이 될 속성입니다.


답변

나는 이것이 도움이 될 것이라고 생각한다 : 컨트롤러에서 목록 항목과 선택한 값을 가져옵니다.

public ActionResult Edit(int id)
{
    ItemsStore item = itemStoreRepository.FindById(id);
    ViewBag.CategoryId = new SelectList(categoryRepository.Query().Get(),
                                        "Id", "Name",item.CategoryId);

    // ViewBag to pass values to View and SelectList
    //(get list of items,valuefield,textfield,selectedValue)

    return View(item);
}

및보기

@Html.DropDownList("CategoryId",String.Empty)


답변

DropDownList에서 동적 데이터를 바인딩하려면 다음을 수행 할 수 있습니다.

아래와 같이 컨트롤러에서 ViewBag를 생성합니다.

ViewBag.ContribTypeOptions = yourFunctionValue();

이제 다음과 같이이 값을 사용하십시오.

@Html.DropDownListFor(m => m.ContribType,
    new SelectList(@ViewBag.ContribTypeOptions, "ContribId",
                   "Value", Model.ContribTypeOptions.First().ContribId),
    "Select, please")


답변

     @Html.DropDownListFor(m => m.SelectedValue,Your List,"ID","Values")

여기 Value는 선택한 값을 저장하려는 모델의 개체입니다.


답변