获取并使用json数据

时间:2017-02-24 22:11:11

标签: javascript jquery json

我有json文件

{
 "arr": [
  {
    "text1": "first",
    "text2": "second",
  },
  {
    "text11": "first",
    "text22": "second",
  }
 ]
}

我希望得到这个对象。

$.ajax({
    url: '../test.json',
    dataType: 'json',
    type: 'get',
    cache: 'false',
    success: function(data) {
        console.log(data.arr);
    }
});

这是有效的。 但是,如果我想为变量赋值,它就不起作用。

    success: function(data) {
        var arrTest = data.arr;
    }

    console.log(arrTest);

返回arrTest未定义

0 个答案:

没有答案