使用修改后的模型渲染视图

时间:2015-03-09 22:59:33

标签: c# asp.net asp.net-mvc asp.net-mvc-4 asp.net-mvc-5

我是MVC的新手,我的工作是一个简单的FORM,但是,我有一个问题, 出于某种原因,我想在控制器操作中更改绑定模型 渲染视图,但这不会发生。

例如:

public class Product{
    int id {get; set;}
    string description {get; set;}
}

和控制器方法:

[POST]
public ActionResult Edite(Product p){
    p.description = "HELLOOOOOO!!!"
    return View(P);
}

观点:

@model WebSite.Models.Product

@{
    ViewBag.Title = "Modificar (Product)";
}

<h2>Modificar (Product)</h2>


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

    <div class="form-horizontal">
        <h4></h4>
        <hr />
        @Html.ValidationSummary(true, "", new { @class = "text-danger" })
        @Html.HiddenFor(model => model.Id)

        <div class="form-group">
            @Html.LabelFor(model => model.description, htmlAttributes: new { @class = "control-label col-md-2" })
            <div class="col-md-10">
                @Html.EditorFor(model => model.description, new { htmlAttributes = new { @class = "form-control" } })
                @Html.ValidationMessageFor(model => model.description, "", new { @class = "text-danger" })
            </div>
        </div>

        <div class="form-group">
            <div class="col-md-offset-2 col-md-10">
                <input type="submit" value="Guardar" class="btn btn-default" />
            </div>
        </div>
    </div>
}

<div>
    @Html.ActionLink("Volver a la Lista", "Index")
</div>

@section Scripts {
    @Scripts.Render("~/bundles/jqueryval")
}

但是在渲染视图中,产品的描述不是“HELLOOOOO !!!!”。

为什么MVC使用用户输入的值而不是我想要的新模型渲染视图?

1 个答案:

答案 0 :(得分:0)

可能不是解决问题的最佳方法,但这篇文章解决了我的问题: Asp.net MVC ModelState.Clear