欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

微信小程序methods中定义的方法互相调用的实例代码

程序员文章站 2022-06-30 18:14:26
当调用test2时: methods = { test(age){ console.log('test', age); },...

当调用test2时:

methods = {
    test(age){
      console.log('test', age);
    },
    test2(){
      console.log(this.methods);
      this.methods.test('222');
      console.log('test2')
    }
  };

结果:

{test: f, test2: f}
test 222
test2

总结

以上所述是小编给大家介绍的微信小程序methods中定义的方法互相调用的实例代码,希望对大家有所帮助