请教一下,各位大神,我在用vue-resource做ajax请求的时候,响应始终为null, 而JQuery请求的时候就能正常响应,请教一下这是怎么回事,
created:function () { var vm = this; $.get('/a', function (data) { vm.list = data; }); //JQuery请求 this.$http.get('/a', function (data) { vm.list = data; }); //Vue-resource请求 },
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号
Vue.http.options.emulateJSON = true