微信小程序 如何定义全局函数?

微信小程序 定义全局数据、函数复用、模版等

微信小程序定义全局数据、函数复用、模版等问题总结:

1.如何定义全局数据

  在app.jsApp({})中定义的数据或函数都是全局的,在页面中可以通过var app = getApp();  app.function/key的方式调用,不过我们没有必要再app.js中定义全局函数。

2.如何实现代码的复用

  函数的复用:

test.js
test: function(){
}
module.exports={
 test:test 
}

 

other.js
var common = require('test.js');
page({
  common.test()
})

 

  模板: