FullCalendar 与字符串的使用
我今天才开始研究 FullCalendar,将来我想使用 php scritp 从数据库加载事件,解析结果以适合 FullCalendar,并调用 $('#calendar').fullCalendar(选项); 问题是,如果我按如下方式调用该函数:
$('#calendar').fullCalendar({
header: {
left: 'prev,next today',
center: 'title',
right: 'month,agendaWeek,agendaDay'
},
editable: true}
);
一切正常,但如果我这样调用它:
var stringCal="{
header: {
left: 'prev,next today',
center: 'title',
right: 'month,agendaWeek,agendaDay'
},
editable: true}";
$('#calendar').fullCalendar(
stringCal
);
它不起作用,有什么想法吗? 预先感谢,顺便说一句,我使用 FullCalendar 1.5.1
I have just today started looking at FullCalendar,and in the future i would like to use a php scritp to load events from a db, parse the results to be apt for FullCalendar, and call the $('#calendar').fullCalendar(options);
The thing is that if I call the function as follows:
$('#calendar').fullCalendar({
header: {
left: 'prev,next today',
center: 'title',
right: 'month,agendaWeek,agendaDay'
},
editable: true}
);
All works ok, but if I call it like this:
var stringCal="{
header: {
left: 'prev,next today',
center: 'title',
right: 'month,agendaWeek,agendaDay'
},
editable: true}";
$('#calendar').fullCalendar(
stringCal
);
It does not work, any ideas?
Thanks in beforehand, by the way im using FullCalendar 1.5.1
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您有字符串之类的对象,那么您可以使用 JSON.parse() 函数。
然后
If you have the object like a string then you can use the JSON.parse() function.
then
您的第二次尝试是对象文字,但您在它周围有引号。这会将其变成字符串。删除引号,如下所示:
Your second attempt is an object literal but you have quotes around it. This turns it into a string. Remove the quotes like this: