vue.js - laravel uses vue-resource and reports an error Uncaught SyntaxError: Unexpected token
世界只因有你
世界只因有你 2017-05-16 16:48:59
0
2
1616

According to the vue-resource official documentation and laravel official documentation, the following syntax format should be used:

var demo = new Vue({
  el: '#app',
  data: {
    gridColumns: {'#':'id', '公司名':'name', '组织名':'email', '电话':'created_at'},
    gridData: []
  },
  methods: {
    this.$http.get('../db').then((response) => {
      this.gridData = response.data;
    },(response) => {
      console.log(response);
    });
  }
});

But the browser directly reports an error: (index):51 Uncaught SyntaxError: Unexpected token .

After searching various information and debugging, we finally found that the syntax that can run normally is as follows:

var demo = new Vue({
  el: '#app',
  data() {
    return{
      gridColumns: {'#':'id', '公司名':'name', '组织名':'email', '电话':'created_at'},
      gridData: []
    }
  },
  mounted(){
    this.$http.get('../db').then((response) => {
      this.gridData = response.data;
    },(response) => {
      console.log(response)
    });
  }
});

What I want to ask is, what is the specific reason? Which grammatical rules should be followed in the future?

Replenish:

世界只因有你
世界只因有你

reply all(2)
黄舟

Simple syntax error, please look carefully at the first error code

  methods: {
    // 這裡是對象呀,不能直接塞
    this.$http.get('../db').then((response) => {
      this.gridData = response.data;
    },(response) => {
      console.log(response);
    });
  }

should be

  methods: {
    fetchData() {
        this.$http.get('../db').then((response) => {
          this.gridData = response.data;
        },(response) => {
          console.log(response);
        });
    }
  },
  mounted() {
      this.fetchData()
  }
Peter_Zhu

Thank you, Tomoe for replying to my question!
I also know why the way data is written. According to the Vue documentation, data cannot be defined in a component using attributes, but must be defined using objects.

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!