欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

ajax请求获取的数据赋值给全局变量

程序员文章站 2022-03-01 15:14:02
...
        function loadData(id) {
             $.ajax({
                url:"{% url 'post_address' %}",
                type:'get',
                async:false,
                traditional:true,
                dataType:"json",
                success:function (response) {
                   a = response;
                },
                error:function (response) {
                    {#console.log(response)#}
                }
            });
            return a;
        }
        datas = loadData(1);
        console.log(datas);
相关标签: HTML ajax