我知道有很多问题浮出水面,但我仍然不确定该怎么办。
我有一个名为“CuisineForm”的HTML表单,在用户选择菜肴类型后,AJAX将表单发送到服务器。 AJAX调用工作正常,服务器响应JSON响应,其中包含此特定菜肴的所有服务时间。这些服务时间分为早餐,午餐和晚餐。
这些时间需要以相同的形式填充到3个单独的下拉列表中。但我真的不知道如何处理JSON结果以填充表格中的3个下拉列表。
以下是来自PHP服务器端脚本的JSON响应。 请注意,这是使用“echo json_encode()”在PHP脚本中生成的。
{"breakfast":[{"09:00:00":"9:00 am"},{"09:30:00":"9:30 am"}],"lunch":[{"12:00:00":"12:00 pm"},{"12:30:00":"12:30 pm"}],"dinner":[{"19:00:00":"7:00 pm"},{"19:30:00":"7:30 pm"}]}
这是我的$ .post代码。
$.post( "gettimeslots", $( "#CuisineForm" ).serialize(), function() {
alert( "success" );
})
.done(function(data) {
// Not sure what code to write here to populate dropdown
})
.fail(function() {
alert( "There was a problem getting the dropdown values!" );
})
.always(function() {
alert( "always" );
});
这是我要填充的下拉列表
<select name="breakfasttimes" id="breakfasttimes"></select>
<select name="lunchtimes" id="lunchtimes"></select>
<select name="dinnertimes" id="dinnertimes"></select>
大多数实现都倾向于使用$ .getJSON。但如上所示,我使用$ .post代替。请告诉我是否应该使用$ .getJSON。
有人可以提供一些指示或代码建议吗?
由于 凯文
答案 0 :(得分:2)
这是一个包含完整答案的小提琴
HTML:
<select name="breakfast" id="breakfast"></select>
<select name="lunch" id="lunch"></select>
<select name="dinner" id="dinner"></select>
JS:
var data = {"breakfast":[{"09:00:00":"9:00 am"},{"09:30:00":"9:30 am"}],"lunch": [{"12:00:00":"12:00 pm"},{"12:30:00":"12:30 pm"}],"dinner":[{"19:00:00":"7:00 pm"},{"19:30:00":"7:30 pm"}]};
// Put this code inside of the "done callback"
var $elements = $('#breakfast, #lunch, #dinner');
$.each(data, function (dataKey, dataVal) {
$elements.each(function(domElKey, domElVal){
if (dataKey === domElVal.id) {
$.each(dataVal, function(timeKey,timeVal){
$.each(timeVal,function(timePropKey, timePropVal){
$(domElVal).append("<option>"+timePropVal+"</option>");
});
})
}
});
});
答案 1 :(得分:0)
您可以使用$.each()
函数循环访问数据:
.done(function(data) {
$.each(data, function(index, element) {
$('body').append($('<div>', {
text: element.name
}));
});
})
假设您的服务器端脚本没有设置正确的Content-Type: application/json
响应头,您需要使用dataType: 'json' parameter
向jQuery指示这是JSON。