最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Uncaught TypeError: not a function when calling method from data in Vue - Stack Overflow

programmeradmin1浏览0评论

I get an error: "Uncaught TypeError: this.thePerson is not a function" when I run this:

var myApp = new Vue({
    el: "#app",
    data: {
        person: [this.thePerson()]
    },
    methods: {
        thePerson: function() {
            return {
                personNickname: "Bob",
                personOwes: 0,
                paymentType: {
                    card: true,
                    cash: false
                }
            };
        }
    }
});

I can't figure out why!

P.S. I realize this is weird looking code but there's a reason why I'm using a function to return the array contents...

I get an error: "Uncaught TypeError: this.thePerson is not a function" when I run this:

var myApp = new Vue({
    el: "#app",
    data: {
        person: [this.thePerson()]
    },
    methods: {
        thePerson: function() {
            return {
                personNickname: "Bob",
                personOwes: 0,
                paymentType: {
                    card: true,
                    cash: false
                }
            };
        }
    }
});

I can't figure out why!

P.S. I realize this is weird looking code but there's a reason why I'm using a function to return the array contents...

Share Improve this question asked Aug 14, 2018 at 2:13 portnoy-the-elderportnoy-the-elder 1411 gold badge2 silver badges9 bronze badges
Add a ment  | 

2 Answers 2

Reset to default 6

Turn data into a function.

var myApp = new Vue({
    el: "#app",
    data: function() {
        return {
            person: [this.thePerson()]
        }
    },
    methods: {
        thePerson: function() {
            return {
                personNickname: "Bob",
                personOwes: 0,
                paymentType: {
                    card: true,
                    cash: false
                }
            };
        }
    }
});

Do you try, assigning persons value on Vue's created method ?

according to your example:

    var myApp = new Vue({
  el: "#app",
  data: {
      person: []
  },
  methods: {
      thePerson: function() {
          return {
              personNickname: "Bob",
              personOwes: 0,
              paymentType: {
                  card: true,
                  cash: false
              }
          };
      }
  },
  created(){
    this.person.push(this.thePerson())
  }
});
发布评论

评论列表(0)

  1. 暂无评论