这是从我尝试过的json文件中获取数据的代码

时间:2016-08-05 10:43:17

标签: json

//这是从我试过的json文件中获取数据的代码。

        $(document).ready(function(){
            $.ajax({
                url: '../json/my_json.json',
                type: 'GET',
                async: true,
                contentType: 'json',
                success: function(res){
                    console.log(res);
                },
                error: function(status){
                    console.log(status);
                }
            });
        });

0 个答案:

没有答案