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);
上一篇: 选择排序