我正在制作日历名册系统。不幸的是,大多数解决方案/插件并不适合我想要的。
Anywho,我想知道的是,是否可以根据多个条件从JSON格式的数组输出中选择一个值。我正在使用jQuery
相当普遍(尚未开始编码):
<for each cell>
--<find ['number_of_slots'] in JSONarray where ['AppointmentDate'] = "02/02/12" && ['salespoint'] = 1 && ['AppointmentTime] = '10AM'>
--<if no results>
-----<fill cell with 'x'>
--<else>
-----<fill cell with ['number_of_slots']
--<end if>
或者我最好为每个单元格进行MySQL查询?似乎只有很多交易,就是这样。
一如既往,非常感谢任何帮助和建议!
干杯!
答案 0 :(得分:0)
如果将数据作为javascript对象进行操作,则将其解析回jSon是可以接受的:
将其解析为js对象: http://api.jquery.com/jQuery.parseJSON/
将解析回jSon 到String:
http://api.jquery.com/jQuery.param/
解析讨论的jSon问题 Convert Object to JSON string
不是你问题的答案,而是jQuery的解决方案,不过