我打電話與服務器:如何格式化一個jQuery的getJSON
var url = '@Url.Action("GetWhoBowls", "Home")';
$.getJSON(url, { "theDate": "calEvent.start" }, function (data) {
alert(data.name);
});
我已經試過引述「theDate」,甚至calEvent.start如上的所有排列....在所有情況下服務器抱怨(來自螢火蟲):
參數字典包含參數非空類型的「theDate」「System.Double」的方法的空條目「System.Web.Mvc.ActionResult GetWhoBowls (Double)'在'MatchClubMVC.Controllers.HomeController'中。
螢火蟲顯示呼叫的參數 theDate calEvent.start
這裏是我的控制器方法簽名
公衆的ActionResult GetWhoBowls(雙theDate)
有人能如此怎樣才能讓我走上正確的道路?!
calEvent.start傳遞了什麼值? (我不熟悉fullcalendar) –
Major Byte,calEvent.start是點擊事件的開始日期和時間。 – Pablo