问题 I'm looking for a way to connect my open source Kendo UI Scheduler to a local database using javascript. I've already started but got stuck because I can't find any helpful documentation on how to do this using javascript. $(function () { $('#scheduler').kendoScheduler({ views: [{type:"day", selected:true}], dataSource: { transport: { read: { url: "@Url.Action("GetTasks","Schedules")", dataType: "json" }, update: { url: "@Url.Action("UpdateTask","Schedules")", dataType: "json" }, create: {