我有接受@FromDate和@ToDate的存储过程,如何从2个datepickers获取值并使用参数对其进行ajax,以便获得所需的数据?
$.ajax({
type: 'GET',
url: DataResource,
dataType: 'json',
data: {
from: $("#date_from").val(),
to: $("#date_to").val()
},
success: function(data, txtstatus, jqxhr) {
console.log(data);
},
error: function (jqxhr, errortext, errorthrown) {
console.log(errorthrown);
}
})
#date_from
和#date_to
是来自datepickers的值。有服务器端代码来处理存储过程。我只是不知道如何传递data
属性中的2个参数。有什么帮助吗?