找不到jQuery JSON对象

时间:2011-12-01 22:23:13

标签: javascript jquery json get

在jQuery中的getJSON函数中发送JSON我的响应错误:

对象未定义:

  (?)(data=[[Object { @uid="0", @name="Well0"}, 
  Object { @uid="1", @name="Well1"}, Object { @uid="2", @name="Well2"}]])

在jQuery中,我有以下内容:

 $.getJSON("HandleGet",{Method:method},
         //Called on response from server
          function(data) {        
                // For every result returned from the JSON get
                  $.each(data.items, function(i, item){
                      $("#dynamicCheck").append(item + " ");

检查了所有jQuery文档,但似乎无法解决。

由于

0 个答案:

没有答案