我在iriscouch上有一个测试帐户
我正在尝试编写一个例程来处理返回的JSON。
function getMyJson(url) {
$('#dispJson').html('<h3>Json Data from: ' + url);
data = $.getJSON(url);
$.each(data, function(key, val) {
$('#dispJson').append('key: ' + key + ' Val: ' + val + '<br />');
});
return true;
};
但我似乎回到了JSON,但不是我期待的那样
结果
key: readyState Val: 1
key: setRequestHeader Val: function ( name, value ) { if ( !state ) { var lname = name.toLowerCase(); name = requestHeadersNames[ lname ] = requestHeadersNames[ lname ] || name; requestHeaders[ name ] = value; } return this; }
key: getAllResponseHeaders Val: function () { return state === 2 ?
......
jQuery.type( elem ); if ( type === "array" ) { deferred.done.apply( deferred, elem ); } else if ( type === "function" ) { callbacks.push( elem ); } } if ( _fired ) { deferred.resolveWith( _fired[ 0 ], _fired[ 1 ] ); } } return this; }
key: statusCode Val: function ( map ) { if ( map ) { var tmp; if ( state < 2 ) { for( tmp in map ) { statusCode[ tmp ] = [ statusCode[tmp], map[tmp] ]; } } else { tmp = map[ jqXHR.status ]; jqXHR.then( tmp, tmp ); } } return this; }
事实上,我从IrisCouch网站上使用的任何网址得到了回复。
我将JSONP设置为true,我还测试了?callback =?附加到URL。
我希望有人认识到我得到的输出,并可以告诉我我误解或做错了什么。
谢谢mcl
答案 0 :(得分:0)
您正在将data
设置为jQuery返回的XHR对象。请记住,XHR是异步的,因此您不能指望结果立即可用。
相反,你应该做这样的事情:
$.ajax({
url: url,
dataType: 'json',
success: function(data) {
$.each(data, function(key, val) {
$('#dispJson').append('key: ' + key + ' Val: ' + val + '<br />');
});
}
});
请务必仔细阅读文档:http://api.jquery.com/jQuery.getJSON/
答案 1 :(得分:0)
非常感谢。它现在按照我的预期工作。 dataType确实需要指定为'jsonp'(我认为因为它是跨域访问)并且为了清楚我添加了类型'get'。
$.ajax({
url: myurl, // eg http://mysite.iriscouch.com/mydatabase or whatever valid curl command
type: 'get',
dataType: 'jsonp',
success: function(data) {
$.each(data, function(key, val) {
$('#dispJson').append('key: ' + key + ' Val: ' + val + '<br />');
});
}
});
只需要弄清楚如何将Values标识为数组然后处理它们。我想我最终可能会有很多级别,而且某处有一个漂亮的分层树例程可以完成所有工作。但是,嘿,我们必须从头开始学习。
再次感谢