javascript - props in json format in vue force toString to be called "[object Object]"
巴扎黑
巴扎黑 2017-05-19 10:24:32
0
2
663
<template>
  <AboutConfirm :projects="projects"/>
</template>

<script>
  import AboutConfirm from '../../components/HomePage/AboutConfirm.vue'
  export default{
    data(){
      return {
        projects:[],
        projectsStr:''
      }
    },
    components: {
      AboutConfirm
    },
    created: function () {
      this.projects = this.$route.query
      this.projectsStr = JSON.stringify(this.$route.query)
    },
    beforeMount(){
      console.log('beforeMount');
      console.log('this.projects--------------');
      console.log(this.projects);
//      console.log(JSON.this.projectsStr);
      let url = SERVER.api.getMyProject
      PM.fnRequestAjax(url, null, 'get', (data) => {
//        this.projects = data.data.not_process
//        console.log('data.data.not_process');
//        console.log(data.data.not_process);
      })
    },
    mounted(){

    },
    updated(){
      console.log('updated');
    },
    activated(){
      console.log('activated');
    }
  }
</script>

<!-- Add "scoped" attribute to limit CSS to this component only -->
<style scoped>
</style>

When jumping to other pages and calling window.history.go(-1) again, the data read in beforeMount becomes "[object Object]"

巴扎黑
巴扎黑

reply all(2)
漂亮男人

[object object] is the default return value of the object toString() method
You should use JSON.stringify(obj) ;

漂亮男人

No one knows what projects have gone through

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template