0

我想知道我想做的事情在 MVC3 控制器中是否可行。我有 3 张桌子;成员,付款和支付类别。我在类别表中有 3 个不同的付款类别(CatA、CatB 和 CatC)。在支付视图中是接受会员 ID 和支付价值(十进制)的表格。我希望做的是,当一个值通过表单传递到控制器时,该值按比例分成 3,每个类别的计算值,并且相同的成员 Id 被提交到数据库。例如,如果 CatA 为 30%,CatB 为 50%,CatC 为 20%,并且成员 Id 为 1010 并且 100.00 被传递给控制器​​,则应将以下内容提交到数据库

标识符 | 中度 | 猫科动物 | 价值

1 | 1010 | 1 | 30.00

2 | 1010 | 2 | 50.00

3 | 1010 | 3 | 20.00

任何线索或任何形式的帮助将不胜感激。控制器

    // POST: /AutoPay/Create
    [HttpPost]
    public ActionResult Create(AutoPay autopay, int tcd, int id, int tzid, FormCollection formCollection)
    {
        if (ModelState.IsValid)
        {
                
         string[] rawpaysplit = formCollection["PayCatSplit"].Split(' ');
          foreach (var x in rawpaysplit){             
         
          if (x.Equals (rawpaysplit[0])){
          autopay.PId = 3;}
          if (x.Equals (rawpaysplit[1])){
          autopay.PId = tzid;}   
          if (x.Equals (rawpaysplit[2])){
          autopay.PId = 4;}
          autopay.Pay= Convert.ToDecimal(x);
          autopay.UId = id;
          autopay.Tcd = tcd;
          autopay.PDate = DateTime.Now;
          autopay.LastUpdate = DateTime.Now;
            autopay.PEntryId = Membership.GetUser().UserName;
            db.AutoPays.Add(autopay);
          
            db.SaveChanges();
 }
            return RedirectToAction("Index");
        }

模型

 public class AutoPay
{
    [Key]
    public int Id { get; set; }

    public int? Tcd { get; set; }
    public int UId { get; set; }
    public virtual Member Member { get; set; }
    public int PId { get; set; }
    public virtual PayCat PayCat { get; set; }
    public int YId { get; set; }
    public virtual DateYear DateYear { get; set; }
    public int MId { get; set; }
    public virtual DateMonth DateMonth { get; set; }
    [DisplayFormat(DataFormatString = "{0:F2}", ApplyFormatInEditMode = true)]
    [DisplayName("Amount")]
    public decimal Pay { get; set; }
    [ScaffoldColumn(false)]
    public DateTime PDate { get; set; }
    [DisplayName("Entry By")]
    public string PEntryId { get; set; }
    [DisplayName("last Upadated By")]
    public string PUpdatedBy { get; set; }
    [DisplayName("Receipt No")]
    public string RecNo { get; set; }
    [DisplayName("Book No")]
    public int BId { get; set; }
    public virtual ReceiptBook ReceiptBook { get; set; }
    public bool POK { get; set; }
    [ScaffoldColumn(false)]
    public DateTime LastUpdate { get; set; }
    public string PayCatSplit
    {
        get { return string.Format("{0} {1} {2}", Math.Round((this.Pay * 0.773211m), 2), Math.Round((this.Pay * 0.123703m),2), Math.Round((this.Pay * 0.103086m))); }
    }

我在查询字符串中传递了很多变量以减少视图表单中的字段数量。我设法完成了这个编码,但它跳过了前两个值,只保存了数据库中最后一个正确的条目。我需要专家帮助

4

1 回答 1

0

当然你可以做到。在 MVC 上,您可以进行通常可以在其他框架上进行的任何编程。

但是,MVC 模式的范式要求您以不同的方式思考它通常如何在更直接的框架上完成。

在这里,我要给你一些小费。不要使用控制器进行计算或数据操作。只需使用模型类来执行此操作并让您的控制器调用该类并使用它,尝试将您的控制器维护为专用于在视图和模型类之间分配程序执行和数据的方法,让这些工作持续下去。

因此,当然,您可以将视图中的任何数据传递给控制器​​,使用控制器将此值传递给模型类,您可以在模型类中对数据进行所需的任何计算或操作并将其保存到数据库。

于 2012-10-04T11:00:02.933 回答