【发布时间】:2014-08-20 03:37:44
【问题描述】:
我正在创建一个search page using ajax。
场景是:在我们的购买系统中,用户从dropdownlist中选择类别,然后根据选择的类别选择click browse button到show a modal form with a list of product。
问题出在显示模式之后,然后用户填写搜索条件并单击搜索,即categoryID is null。使用ajax搜索数据时如何保持这个值?
下面的代码代表我到目前为止所做的事情:
购买视图:
@using (Html.BeginForm("Create", "Invoice", FormMethod.Post, new { @enctype = "multipart/form-data" }))
{
@Html.LabelFor(model => model.CategoryID, new { @class = "control-label col-md-2" })
@Html.DropDownListFor(model => model.CategoryID, new SelectList(Model.Categories, "CategoryID", "Name"), "-- Please Select --", new { @class = "form-control" })
@Html.ValidationMessageFor(model => model.CategoryID)
@Html.LabelFor(model => model.ProductID, new { @class = "control-label col-md-2" })
@Html.HiddenFor(model => model.ProductID)
@Html.EditorFor(model => model.Product.Name, new { htmlAttributes = new { @class = "form-control", @readonly = "readonly" } })
<button class="btn btn-primary" id="btnLookupProduct" data-id="@Model.CategoryID" data-toggle="modal" data-target="#myModal">Lookup Product</button>
}
<div class="modal fade" id="myModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">×</span><span class="sr-only">Close</span></button>
<h4 class="modal-title" id="myModalLabel">Product List</h4>
@using (Ajax.BeginForm("Search", "Product",
new AjaxOptions
{
HttpMethod = "POST",
InsertionMode = InsertionMode.Replace,
UpdateTargetId = "lookup-timekeeper-container"
}))
{
@Html.DropDownList("FilterField",
new List<SelectListItem>
{
new SelectListItem { Text = "Code", Value = "Code" },
new SelectListItem { Text = "Name", Value = "Name" }
},
"-- Please Select --",
new { @class = "form-control" })
@Html.TextBox("FilterValue", null, new { @class = "form-control", @placeholder = "Enter keyword" })
<input type="submit" value="Search" class="btn btn-primary" />
}
</div>
<div class="modal-body" id="lookup-timekeeper-container">
// list of product
</div>
</div>
</div>
</div>
@section Scripts {
<script type="text/javascript">
$(document).ready(function () {
$("#btnLookupProduct").click(function () {
var url = '@Url.Content("~/Product/Search/")' + $("#CategoryID").val();
$.get(url)
.done(function (data) {
if (!data.message) {
$("#lookup-timekeeper-container").html(data);
$("#myModal").modal(show = true, backdrop = true);
} else {
alert(data.message);
}
});
});
});
</script>
}
采购总监:
public ActionResult Search(int? id, string filterField, string filterValue)
{
var products = db.Products.Where(p => p.CategoryID == id);
if (!string.IsNullOrEmpty(filterValue))
{
products = products.Where(filterField + ".Contains(@0)", filterValue);
}
return PartialView("_Lookup", products.ToList());
}
产品部分页面:
@model List<PurchaseSystem.Models.Product>
<div class="table-responsive">
<table class="table table-striped table-hover table-condensed">
<tr>
<th>Code</th>
<th>Name</th>
</tr>
@foreach (var item in Model)
{
<tr>
<td>@Html.DisplayFor(modelItem => item.Code)</td>
<td>@Html.DisplayFor(modelItem => item.Name)</td>
</tr>
}
</table>
</div>
【问题讨论】:
-
类别ID的
<select>标签是在第一种形式中定义的,所以它不会在第二种形式中回发 -
@StephenMuecke 你说得对,这就是问题所在,但我不知道如何解决。我无法将 categoryID 移动到第二个表单,因为在打开第二个表单之前需要在第一个表单中使用它。
-
在第二种形式中添加
@Html.HiddenFor(model => model.CategoryID),并在单击查找产品按钮时使用$('#btnLookupProduct').click(function(){ $('#secondForm #CategoryID').val($('#firstForm #CategoryID').val()); });设置CategoryID。 -
您可以查看使用form attribute 将下拉列表与第二种形式相关联,但我的建议是摆脱
Ajax.BeginForm垃圾并使用jquery 来处理该部分(您已经在使用它对于其他功能) -
@cackharot 我无法在第二种形式中添加
@Html.HiddenFor(model => model.CategoryID),这会导致第一次加载页面时类别下拉列表中没有数据。
标签: javascript jquery ajax asp.net-mvc