如何从视图MVC在不同的控制器方法之间传递模型

时间:2018-09-06 16:16:43

标签: c# asp.net-mvc

我进行了很多搜索,但我并不幸运找到解决方案,我的目标是根据用户选择的按钮来保存模型。

我有两个类型为button的输入,在按下按钮时,每个输入应调用与控制器不同的方法。您必须有一个帐户。所有这些仅在模型的同一视图中发生。

这是我的观点:

@model WebShop.Models.Product

@{
    ViewBag.Title = "Create";
}

<h2>Crear</h2>

@using Newtonsoft.Json  
@using (Html.BeginForm(new { @id = "create" })) 
{
    @Html.AntiForgeryToken()

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

        <div class="form-group">
            @Html.LabelFor(model => model.ProductTitle, htmlAttributes: new { @class = "control-label col-md-2" })
            <div class="col-md-10">
                @Html.EditorFor(model => model.ProductTitle, new { htmlAttributes = new { @class = "form-control" } })
                @Html.ValidationMessageFor(model => model.ProductTitle, "", new { @class = "text-danger" })
            </div>
        </div>
        <div class="form-group">
            <div class="col-md-offset-2 col-md-10">
                <input type="submit" value="Crear" class="btn btn-default" />
                <input type="submit" value="Crear en memoria" class="btn btn-default" id="InMemory" />
            </div>
        </div>       
    </div>
}

这些是我的方法:

[HttpPost]
public ActionResult Create(Product product)
{
   try
   {                            
       List<Product> listProducts = new List<Product>();                
       if (ModelState.IsValid)
       {                    
          db.Products.Add(product);                    
          db.SaveChanges();
          TempData["list"] = db.Products.ToList();                   
          return RedirectToAction("Index");
       }               
       return View(product);                          
    }
    catch
    {                
       return View(product);
    }
}

[HttpPost]
public ActionResult CreateInMemory(Product product)
{
   try
   {        
       if (ModelState.IsValid)
       {
           using (SQLiteConnection con = new SQLiteConnection("Data Source=:memory:"))
           {                          
               con.Open();                                                   
               if (string.IsNullOrEmpty(result.ToString()))
               {
                  string query = @"CREATE TABLE Products 
                                 (ProductID integer primary key,
                                  ProductNumber integer,
                                  ProductTitle varchar(100));";                             
                  using (SQLiteCommand comd = new SQLiteCommand(query,con))
                  {                               
                      comd.ExecuteNonQuery();
                      TempData["list"] = saveListProduct(product, con);
                   }
                }
                else
                {
                      TempData["list"] = saveListProduct(product, con);                           
                }
                      con.Close();
                      return RedirectToAction("Index");
         }
                    }                      
                    return View(product);
   }
   catch(Exception e)
   {
        string message = e.Message;
        return View("Index");
   }
}

为了使它们在上下文中,我想使用SQLite保护数据库和内存中的模型,欢迎提出任何建议。

3 个答案:

答案 0 :(得分:1)

我认为您可以为此使用formaction属性(HTML5)。请尝试以下方法。希望对您有帮助,我的朋友:))

<input type="submit" name="response" value="Create" formaction=@Url.Action("Create") formmethod="post" class="btn btn-default" />

<input type="submit" name="response" value="CreateInMemory" formaction=@Url.Action("CreateInMemory") formmethod="post" class="btn btn-default" />

注意:它只能在HTML5中实现。

答案 1 :(得分:1)

考虑以下示例,如何将模型发送到同一控制器的不同方法:

term_id

答案 2 :(得分:0)

对于jQuery解决方案,请将您的<input>元素更改为简单的<button>元素,并在$(document).ready()函数中使用下面的jQuery:

$("#btnCreate").on('click', function () {
    $.ajax({
        url: '@Url.Action("Create", "Controller", new { area="Area"})',
        type: "POST",
        data: $('form').serialize(),
        success: function () {
            //Go to new location etc
        }
    })
})

$("#btnCreateInMemory").on('click', function () {
    $.ajax({
        url: '@Url.Action("CreateInMemory", "Controller", new { area="Area"})',
        type: "POST",
        data: $('form').serialize(),
        success: function () {
            //Go to new location etc
        }
    })
})