当foo.json页面的content-type:text/html

Example:
    $.get('/foo.json', function(data){
       console.log(typeof(data));
    })
    //string类型
jquery接收的数据需要使用JSON.parse(data)转换为对象

当foo.json页面的content-type:application/json

Example:
    $.get('/foo.json', function(data){
       console.log(typeof(data));
    })
    //object类型
jquery接收的数据无需转换