目前正在使用firebug调试应用程序,我想查看我的网址返回的json / XML值。 使用MVC结构,因此接近
jQuery("#list1").jqGrid({
url:'http://localhost/Zend/jqueryapp/public/artist/index',
datatype: "json",
mtype: 'GET',
//console.log("http://localhost/Zend/jqueryapp/public/artist/index"),
console.log
位是挑战。
我该怎么做?
答案 0 :(得分:1)
您可以通过在Firebug中的网络标签下展开请求来查看回复,而无需任何额外的工作。
如果您不希望在调试时仔细检查并希望立即输出值,那么您可以在请求后将日志记录放入回调中。
类似的东西:
jQuery("#list1").jqGrid({
url:'http://localhost/Zend/jqueryapp/public/artist/index',
datatype: "json",
mtype: 'GET',
loadComplete: function(xhr) {
//get values to log from xhr
//console.log()
},
答案 1 :(得分:1)
打开“网络”标签,打开请求,然后打开“回复”标签。