0

我的 jData 实际上是一个 json 数组但是当我尝试传递它时它给了我一个错误

这下面的作品

$test.pass = {
    lines:{ID:'ID', Date:'Date'},
    data:{}
};

但是当我想传递一个我从ajax返回的json数组时,我得到一个错误

$.ajax({
    type: 'POST',
    url: 'someurl',
    dataType: 'json',    
    success: function(data){ 
       $test.pass = {
          lines:{ID:'ID', Date:'Date'},
          data:data
       };   
    }                 
});

它给了我一个错误TypeError: Cannot read property 'data' undefined

4

1 回答 1

0

$test 是一个“全局”变量吗?如果在success函数的第一行下断点,data的值是多少?

于 2012-05-14T22:53:25.307 回答