asp.net-mvc – MVC简单模型绑定无法正常工作

前端之家收集整理的这篇文章主要介绍了asp.net-mvc – MVC简单模型绑定无法正常工作前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
好吧,这一定是一些愚蠢的东西,我做错了,但我找不到它.

MVC行动:

[AcceptVerbs(HttpVerbs.Post)]
public virtual ActionResult Create(BatchCreateviewmodel createModel)
{
    return RedirectToRoute(MVC.Home.Display());
}

BatchCreateviewmodel:

public class BatchCreateviewmodel
{
    bool searchAVM;
    bool searchBPO;
    bool searchAppraisal;
    int transactionAge;
    string Description;
    string uploadfile;
}

View页面上有一些名为“searchAVM”,“searchBPO”,“searchAppraisal”的控件,(复选框)“transactionAge”(一组带整数值的单选按钮)和“description”(文本框)

当我在“Create”条目处中断时,createModel就在那里,但是具有所有默认值(对于字符串为null,对于布尔值为false,对于int为0).如果我检查Request.Form,值就在那里,但它们只是没有进入模型.

我究竟做错了什么?

(这是在MVC 2,框架4下.)

解决方法

您的视图模型应具有自动属性,而不是公共变量.它之前让我感到惊讶!

所以它应该是:

public class BatchCreateviewmodel 
{ 
    public bool searchAVM {get;set;}
    public bool searchBPO {get;set;}
    public bool searchAppraisal {get;set;}
    public int transactionAge {get;set;}
    public string Description {get;set;}
    public string uploadfile {get;set;}
}
原文链接:https://www.f2er.com/aspnet/247693.html

猜你在找的asp.Net相关文章