Я пытаюсь вызвать метод чтения, но также передаю параметры. Ниже приведен мой код, и я вижу, что значения передаются, но в консоли есть ошибка:
var dataSource = new kendo.data.DataSource({
transport: {
read: {
url: URL + "/Read?StudentNum=" + studentNum + "AndStudentDept=" + studentDept,
dataType: "json",
data: {
studentNum: studentNum,
studentDept: studentDept
}
},
pageSize: 5,
schema: {
data: function (response) {
console.log(response);
return response.Data.dsstudentReport.ttstudentReport;
},
}
}
});
The error is: kendo.all.js:7165 Uncaught TypeError: e.slice is not a function
I will continue to keep looking but if anyone could help me identify where I have made a mistake, that would be greatly appreciated. I am new to Kendo and still learning.
Thanks