12

在这里,我从数据库中获取值并将其显示在输入字段中

<input type="text" id="ss" value="@item.Quantity"/>

并且从数据库中获取的值是1。然后我将输入字段值更改为2 并在操作单击中将该值传递给控制器

 <a id="imgUpdate"  href="@Url.Action("Update", "Shopping", new { id = Request.QueryString["UserID"], productid = item.ProductID, qty = item.Quantity, unitrate = item.Rate })"> 

但在控制器部分,我得到了1 old valueqty但我需要那个updated value 2qty

public ActionResult Update(string id, string productid, int qty, decimal unitrate)
        {
            if (ModelState.IsValid)
            {
                int _records = UpdatePrice(id,productid,qty,unitrate);
                if (_records > 0)
                {
                    return RedirectToAction("Index1", "Shopping");
                }
                else
                {
                    ModelState.AddModelError("","Can Not Update");
                }
            }
            return View("Index1");
        }

有什么建议吗?

编辑:

     @using (Html.BeginForm("Update", "Shopping", FormMethod.Post))
     {

                @Html.Hidden("id", @Request.QueryString["UserID"] as string)
                @Html.Hidden("productid", item.ProductID as string)
                @Html.TextBox("qty", item.Quantity)
                @Html.Hidden("unitrate", item.Rate)

                <input type="submit" value="Update" />
     }
4

5 回答 5

11

您可以使用简单的形式:

@using(Html.BeginForm("Update", "Shopping"))
{
    <input type="text" id="ss" name="qty" value="@item.Quantity"/>
    ...
    <input type="submit" value="Update" />
}

并在此处添加属性:

[HttpPost]
public ActionResult Update(string id, string productid, int qty, decimal unitrate)
于 2012-10-18T12:50:13.970 回答
3

当您想将新信息传递给您的应用程序时,您需要使用 POST 表单。在 Razor 中,您可以使用以下内容

查看代码:

@* By default BeginForm use FormMethod.Post *@
@using(Html.BeginForm("Update")){
     @Html.Hidden("id", Model.Id)
     @Html.Hidden("productid", Model.ProductId)
     @Html.TextBox("qty", Model.Quantity)
     @Html.TextBox("unitrate", Model.UnitRate)
     <input type="submit" value="Update" />
}

控制器的动作

[HttpGet]
public ActionResult Update(){
     //[...] retrive your record object
     return View(objRecord);
}

[HttpPost]
public ActionResult Update(string id, string productid, int qty, decimal unitrate)
{
      if (ModelState.IsValid){
           int _records = UpdatePrice(id,productid,qty,unitrate);
           if (_records > 0){                    {
              return RedirectToAction("Index1", "Shopping");
           }else{                   
                ModelState.AddModelError("","Can Not Update");
           }
      }
      return View("Index1");
 }

请注意,或者,如果您想使用@Html.TextBoxFor(model => model.Quantity),您可以输入带有名称的输入(尊重大小写)"Quantity",或者您可以更改您的 POST Update() 以接收对象参数,这与您的严格类型视图的类型相同。这是一个例子:

模型

public class Record {
    public string Id { get; set; }
    public string ProductId { get; set; }
    public string Quantity { get; set; }
    public decimal UnitRate { get; set; }
}

看法

@using(Html.BeginForm("Update")){
     @Html.HiddenFor(model => model.Id)
     @Html.HiddenFor(model => model.ProductId)
     @Html.TextBoxFor(model=> model.Quantity)
     @Html.TextBoxFor(model => model.UnitRate)
     <input type="submit" value="Update" />
}

事后行动

[HttpPost]
public ActionResult Update(Record rec){ //Alternatively you can also use FormCollection object as well 
   if(TryValidateModel(rec)){
        //update code
   }
   return View("Index1");
}
于 2012-10-18T12:52:48.147 回答
2

您的链接是在页面加载时生成的,因此它将始终具有原始值。您需要通过 javascript 设置链接

您也可以将其包装在一个表单中,并为idproductid和 隐藏字段unitrate

这是给你的样本

HTML

<input type="text" id="ss" value="1"/>
<br/>
<input type="submit" id="go" onClick="changeUrl()"/>
<br/>
<a id="imgUpdate"  href="/someurl?quantity=1">click me</a>

JS

function changeUrl(){
   var url = document.getElementById("imgUpdate").getAttribute('href');
   var inputValue = document.getElementById('ss').value;
   var currentQ = GiveMeTheQueryStringParameterValue("quantity",url);
    url = url.replace("quantity=" + currentQ, "quantity=" + inputValue);
document.getElementById("imgUpdate").setAttribute('href',url)
}

    function GiveMeTheQueryStringParameterValue(parameterName, input) {
    parameterName = parameterName.replace(/[\[]/, "\\\[").replace(/[\]]/, "\\\]");
    var regex = new RegExp("[\\?&]" + parameterName + "=([^&#]*)");
    var results = regex.exec(input);
    if (results == null)
        return "";
    else
        return decodeURIComponent(results[1].replace(/\+/g, " "));
}

这可以根据需要进行清理和扩展,但示例有效

于 2012-10-18T12:37:37.517 回答
1

我将尝试回答这个问题,但我的示例非常简单,因为我是 mvc 的新手。希望这对某人有所帮助。

    [HttpPost]  ///This function is in my controller class
    public ActionResult Delete(string txtDelete)
    {
        int _id = Convert.ToInt32(txtDelete); // put your code           
    }

此代码在我的控制器的 cshtml 中

  >   @using (Html.BeginForm("Delete", "LibraryManagement"))
 {
<button>Delete</button>
@Html.Label("Enter an ID number");
@Html.TextBox("txtDelete")  }  

只需确保文本框名称和控制器的函数输入具有相同的名称和类型(字符串)。这样,您的函数将获得文本框输入。

于 2013-08-27T14:04:00.720 回答
1

在您的视图中尝试以下操作以检查每个的输出。当视图被第二次调用时,第一个更新。我的控制器使用键 ShowCreateButton 并具有带有默认值的可选参数 _createAction - 您可以将其更改为您的键/参数

@Html.TextBox("_createAction", null, new { Value = (string)ViewBag.ShowCreateButton })
@Html.TextBox("_createAction", ViewBag.ShowCreateButton )
@ViewBag.ShowCreateButton
于 2014-07-16T12:51:57.883 回答