当我发送 json 对象数组时,我的 jquery ajax 方法能够解析内容并在 jquery 的 listview 中显示数据,但是当我只有一个对象时,我的同一个 jquery ajax 方法无法解析数据。
这是我的 json 对象数组:
{"menuService":[{"idmenu":"0","itemCatagory":"Main Course","itemDescription":"Food from UP","itemImagePath":"http://localhost:8080/fotservice/ItemImage?id=Steam Rice","itemName":"Steam Rice","rate":"100.5","subItemName":"Half Plate Steam Rice","subItemNameRate":"100.5"},{"idmenu":"5","itemCatagory":"Main Course","itemDescription":"tasty lunch","itemImagePath":"http://localhost:8080/fotservice/ItemImage?id=Lunch Combo(raita,rice,dal,salad)","itemName":"Lunch Combo(raita,rice,dal,salad)","rate":"123.0","subItemName":"lunch(dal,rice)","subItemNameRate":"100.5"}]}
这是我的单个 json 对象:
{"menuService":{"idmenu":"2","itemCatagory":"xyz","itemDescription":"fghjkl;","itemImagePath":"http://localhost:8080/fotservice/ItemImage?id=Dal makhni","itemName":"Dal makhni","rate":"121.5","subItemName":"Half plate Dal makhni","subItemNameRate":"121.56"}}
这是我的 jquery ajax 方法:
$.ajax({
url: "http://localhost:8080/fotservice/rest/menu/"+cat+"/items",
type: 'GET',
dataType: 'json',
contentType: "application/json; charset=utf-8",
success: function( response ) {
var markup = "";
$.each(response.menuService, function(index, result) {
var $template = $('<div><li> <a data-transition="slide" href="desc.html?cat='+result.itemName+'" rel="external" > <img class="profile"> <p class="from"> </p><p class="tweet"> </p></li></a></div>');
$template.find(".profile").attr("src", result.itemImagePath);
$template.find(".from").append(result.itemDescription);
markup += $template.html();
});
$( "#tweet-list" ).append(markup).listview( "refresh", true ); // The true parameter indicates we want to refresh the entire list, not just the list items.
},
timeout: 6000, // Timeout after 6 seconds
error: function(jqXHR, textStatus, errorThrown) {
console.log("Error, textStatus: " + textStatus + " errorThrown: "+ errorThrown);
$.mobile.hidePageLoadingMsg();
//show error message
$( "<div class='ui-loader ui-overlay-shadow ui-body-e ui-corner-all'><h1>"+ $.mobile.pageLoadErrorMessage +"</h1></div>" )
.css({ "display": "block", "opacity": 0.96, "top": 100 })
.appendTo( $.mobile.pageContainer )
.delay( 800 )
.fadeOut( 1000, function() {
$( this ).remove();
});
}
});
我尝试了 jquery getjson 方法,但这也是同样的行为。