我需要JSON响应字符串/对象以进行调试。我怎么能得到它?
答案 0 :(得分:2)
你走了:
alert(JSON.stringify(object));
这就是我能给你的一切,因为你甚至没有提供代码示例......
答案 1 :(得分:0)
这个json:
[
{
"id": "1",
"title": "All Day Event ",
"allDay": true,
"start": "1283378679",
"end": null,
"url": "#",
"className": "event-type-one",
"editable": "true",
"source": null,
"description": "Sed enim et mauris purus nisi auctor, amet integer rhoncus, dapibus augue scelerisque."
}
响应字符串将是
$('#calendar').fullCalendar({
events: "( your path to json )/events.json"
alert(event.id);
alert(event.title);
alert(event.allDay);
});
等