我正在使用jQuery插件jTable。该插件具有以下功能来加载表:
$('#PersonTable').jtable('load', { CityId: 2, Name: 'Halil' });
load函数中的值作为POST数据发送。该插件还通过URL发送两个查询字符串参数(jtStartIndex,jtPageSize),用于分页表。
文档中的示例显示了如何在ASP.NET MVC中处理此问题的函数,但未在Web API Example中处理:
[HttpPost]
public JsonResult StudentListByFiter(string name = "", int cityId = 0, int jtStartIndex = 0, int jtPageSize = 0, string jtSorting = null)
{
try
{
//Get data from database
var studentCount = _repository.StudentRepository.GetStudentCountByFilter(name, cityId);
var students = _repository.StudentRepository.GetStudentsByFilter(name, cityId, jtStartIndex, jtPageSize, jtSorting);
//Return result to jTable
return Json(new { Result = "OK", Records = students, TotalRecordCount = studentCount });
}
catch (Exception ex)
{
return Json(new { Result = "ERROR", Message = ex.Message });
}
}
我的功能目前看起来如何:除了我无法读取POST数据(名称参数)之外,它工作正常:
public dynamic ProductsList(string name = "", int jtStartIndex = 0, int jtPageSize = 0 )
{
try
{
int count = db.Products.Count();
var products = from a in db.Products where a.ProductName.Contains(name) select a;
List<Product> prods = products.OrderBy(x => x.ProductID).ToList();
return (new { Result = "OK", Records = prods, TotalRecordCount = count });
}
catch (Exception ex)
{
return (new { Result = "ERROR", Message = ex.Message });
}
}
我的jTable加载:(当用户在输入中输入文本时调用此方法)
$('#ProductTable').jtable('load', {
name: $('#prodFilter').val()
});
对于如何读取URL中的字符串参数和Web API函数中的POST数据,我将不胜感激。
修改 我使用另一种方法将数据发送到API。我没有在格式化为JSON的加载函数中发送它,而是使用listAction的函数并通过URL发送数据(有关详细信息,请参阅jTable API参考):
listAction: function (postData, jtParams) {
return $.Deferred(function ($dfd) {
$.ajax({
url: 'http://localhost:53756/api/Product/ProductsList?jtStartIndex=' + jtParams.jtStartIndex + '&jtPageSize=' + jtParams.jtPageSize + '&name=' + $('#prodFilter').val(),
type: 'POST',
dataType: 'json',
data: postData,
success: function (data) {
$dfd.resolve(data);
},
error: function () {
$dfd.reject();
}
});
});
}
根据过滤结果重新加载表格:
$('#ProductTable').jtable('load');
而不是:
$('#ProductTable').jtable('load', {
name: $('#prodFilter').val()
});
答案 0 :(得分:0)
尝试将[FromBody]
属性应用于名称参数
public dynamic GetProductList([FromBody]string name = "", int jtStartIndex = 0, jtPageSize = 0)
{
...
}
Web API中的默认绑定器将在URI中查找简单类型(如string),指定FromBody属性将强制它查看正文。