VueJS从另一个方法访问方法

时间:2016-11-20 18:24:21

标签: javascript methods vue.js

我正在使用VueJS制作一个简单的资源管理游戏/界面。在那一刻我想要每12.5秒激活roll函数并将结果用于另一个函数。 目前虽然我一直收到以下错误:

  

未捕获的TypeError:无法读取undefined(...)

的属性'roll'

我试过了:

  • app.methods.roll(6);
  • app.methods.roll.roll(6);
  • roll.roll()
  • roll()

但似乎无法访问该功能。任何想法我怎么可能实现这个?

methods: {

  // Push responses to inbox.
  say: function say(responseText) {
    console.log(responseText);
    var pushText = responseText;
    this.inbox.push({ text: pushText });
  },

  // Roll for events
  roll: function roll(upper) {
    var randomNumber = Math.floor(Math.random() * 6 * upper) + 1;
    console.log(randomNumber);
    return randomNumber;
  },

  // Initiates passage of time and rolls counters every 5 time units.
  count: function count() {
    function counting() {
      app.town.date += 1;
      app.gameState.roll += 0.2;

      if (app.gameState.roll === 1) {
        var result = app.methods.roll(6);
        app.gameState.roll === 0;
        return result;
      }
    }

    setInterval(counting, 2500);

    ...

    // Activates the roll at times.
  }
}

3 个答案:

答案 0 :(得分:77)

  

您可以直接在VM实例上访问这些方法,也可以在指令表达式中使用它们。所有方法都将自己的this上下文自动绑定到Vue实例。

- Vue API Guide on methods

在Vue实例的方法中,您可以使用this访问实例上的其他方法。

var vm = new Vue({
  ...
  methods: {
    methodA() {
      // Method A
    },
    methodB() {
      // Method B

      // Call `methodA` from inside `methodB`
      this.methodA()
    },
  },
  ...
});

要访问Vue实例之外的方法,您可以将实例分配给变量(例如上面示例中的vm)并调用方法:

vm.methodA();

答案 1 :(得分:2)

您可以使用vm.methodName();

示例:

let vm = new Vue({
  el: '#app',
  data: {},
  methods: {
    methodA: function () {
      console.log('hello');
    },
    methodB: function () {
      // calling methodA
      vm.methodA();
    }
  },
})

答案 2 :(得分:0)

let vm = new Vue({
  el: '#testfunc',
  data:{
    sp1: "Hi I'm textbox1",
    sp2: "Hi I'm textbox2"
  },
  methods:{
    chsp1:function(){
      this.sp1 = "I'm swapped from textbox2"
    },
    chsp2:function(){
      this.sp2 = "I'm swapped from textbox1";
      this.chsp1();
    },
    swapit:function(){
      this.chsp2();
    }
  }
});
<script src="https://cdnjs.cloudflare.com/ajax/libs/vue/2.5.17/vue.js"></script>
<div id="testfunc">
  <input type="text" :value="sp1"></span>
  <input type="text" :value="sp2"></span>
  <button @click="swapit()">Swap</button>
</div>