vue.js $ HTTP.GET返回NULL PHP RESPONSE

时间:2016-12-26 13:07:49

标签: vue.js vue-resource

我尝试使用API​​而$ http.get只返回NULL。我调用一个返回json的PHP

我在做什么废话?

<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/vue/2.1.7/vue.js"></script>
<script src="https://cdn.jsdelivr.net/vue.resource/1.0.3/vue-  resource.min.js"></script>
<div id="app">{{cervejarias}}</div>


new Vue({
el:'#beerApp',

data:{
cervejarias: null
},
methods:{
getChamados: function(){
    this.$http.get('listar_cervejarias.php').then(function(response){
        this.cervejarias = response.data;
    }, function(error){
        console.log(error.statusText);
    });
 }
},
 mounted: function () {
 this.getChamados();
 }


  });

1 个答案:

答案 0 :(得分:-1)

考虑添加:

header('Access-Control-Allow-Origin: *');

到您的PHP页面。