我有一个下拉列表,我可以选择位置来过滤我的数据。
我有一个数组,我用AJAX发布到我的控制器。在我的本地计算机上,当我没有按照预期从我的下拉列表中选择任何内容时,我将参数设置为null。但是,在我的实时网站上,似乎变量不为null,因为它查询数据,因此结果为空。
这怎么可能?我希望该值为null,因此我可以正确过滤数据。
谢谢, 斯蒂芬
JQuery的
$("#main").on("click", "#submit-search-catalog", function () {
var url = "/Home/Catalog";
var locations = $("#County").val();
if (url != "") {
$.post(url, { locations: locations },
function (data) {
if (data) {
$(".catalog-container").html(data);
}
}).fail(function (xhr, status, error) {
alert("Error");
});
}
return false;
});
MVC控制器
public async Task<ActionResult> Catalog(int[] locations = null)
{
var companies = await db.Users.Where(u => u.IsVisibleInCatalog.Equals(true)).OrderBy(u => u.CompanyRegistrationDate).ToListAsync();
//Sort locations
if (!(locations == null || locations.Length == 0))
{
companies = companies.Where(c => locations.Contains(c.CompanyLocation) || c.CompanyLocation.Equals(1)).ToList();
}
var model = new CatalogViewModel
{
Companies = companies
};
if (Request.IsAjaxRequest())
{
return PartialView("~/Views/Home/_CatalogListPartial.cshtml", companyList);
}
return View(model);
}
- 编辑
我试过这个进行错误测试,并在本地警告“空”,服务器端警告“空”:
if (locations == null)
alert("null");
if (locations.length == 0)
alert("empty");
答案 0 :(得分:2)
在jquery上选择喜欢 $(&#34;#县&#34)。VAL(); 可能是基于版本的问题。关于val()函数;在jQuery 3.0中,如果没有选择任何选项,它将返回一个空数组;在jQuery 3.0之前,它返回null。 但它可以改为像radiobutton或combo这样的对象类型。
答案 1 :(得分:-1)
在脚本中进行类型检查。 而不是:
if (url != "")
试试这个:
if (url !== "")