0

ViewModel がコントローラーにポストバックするのに問題がありますが、ViewModel がビューからコントローラーに正しくマップされていません。

TopicIdContentには値が含まれている必要がありますが、ポストバックされた場合、次の値は含まれません。

VS デバッグ: ss

ビューモデル:

  public class PostViewModel
{
    public int PostId { get; set; }
    public string Title { get; set; }
    public string Description { get; set; }
    public string Author { get; set; }
    public DateTime DateOfTopic { get; set; }
}

public class ReplyViewModel
{
    public int TopicId { get; set; }
    public string Content { get; set; }

}

public class PostListAndReplyVM
{
    public List<PostViewModel> PostViewModel { get; set; }
    public ReplyViewModel ReplyViewModel { get; set; }
}

意見:

@model centreforum.Models.PostListAndReplyVM

@using (Html.BeginForm()) {
@Html.AntiForgeryToken()
@Html.ValidationSummary(true)

<fieldset>
    <legend>Post</legend>

         @Html.HiddenFor(model => model.ReplyViewModel.TopicId)

    <div class="editor-label">
        @Html.LabelFor(model => model.ReplyViewModel.Content)
    </div>
    <div class="editor-field">
        @Html.EditorFor(model => model.ReplyViewModel.Content)
        @Html.ValidationMessageFor(model => model.ReplyViewModel.Content)
    </div>
    <p>
        <input type="submit" value="Create" />
    </p>
</fieldset>

}

生成された HTML:

<form action="/Post/List/7/" method="post"><input name="__RequestVerificationToken" type="hidden" value="xxxxxxxxxxxxx" />    <fieldset>
    <legend>Post</legend>

         <input data-val="true" data-val-number="The field TopicId must be a number." data-val-required="The TopicId field is required." id="ReplyViewModel_TopicId" name="ReplyViewModel.TopicId" type="hidden" value="7" />

    <div class="editor-label">
        <label for="ReplyViewModel_Content">Content</label>
    </div>
    <div class="editor-field">
        <input class="text-box single-line" id="ReplyViewModel_Content" name="ReplyViewModel.Content" type="text" value="" />
        <span class="field-validation-valid" data-valmsg-for="ReplyViewModel.Content" data-valmsg-replace="true"></span>
    </div>

    <p>
        <input type="submit" value="Create" />
    </p>
</fieldset>
</form>

生成された HTML からわかるように、TopicId には間違いなく値があります。value="7"

フォーム投稿と、ReplyViewModel を期待しているコントローラーとの間で問題がどこにあるのか、誰にもわかりますか?

ありがとうございました、

マーク

4

3 に答える 3

3

入力フィールド名にはReplyViewModel(model => model.ReplyViewModel.*ラムダのため) というプレフィックスが付いているため、この情報をモデル バインダーに示す必要があります。

[HttpPost]
[ValidateAntiForgeryToken]
public ActionResult List([Bind(Prefix = "ReplyViewModel")] ReplyViewModel model)
{
    ...
}

または、List アクションに PostListAndReplyVM モデルを使用させます。

[HttpPost]
[ValidateAntiForgeryToken]
public ActionResult List(PostListAndReplyVM model)
{
    // obviously only model.ReplyViewModel will be bound here because
    // those are the only input fields in your form
    ...
}
于 2013-06-19T08:37:31.017 に答える
3

問題は、ビューが型付けされているという事実ですPostListAndReplyVM- したがって、 - などの名前が作成されReplyViewModel.Contentますが、コントローラー アクションは を想定しているためReplyViewModel、これらのフィールドをバインドできません (つまり、 などはありませんReplyViewModel.ReplyViewModel.Content)。

コントローラーのアクションを変更します。

public ActionResult List(PostListAndReplyVM reply)

または、それがビュー全体の場合は、ReplyViewModel代わりに入力するだけです(それに応じて HtmlHelper 式を更新します)。

于 2013-06-19T08:38:06.957 に答える
2

別のモデルにバインドしたため、null

ビューで

@model centerforum.Models.PostListAndReplyVM

実際の ReplyViewModel

のようにバインドしてみてください

public ActionResult SomeAction(PostListAndReplyVM model)

    {
    }
于 2013-06-19T08:36:33.717 に答える