模块化

可以将一些公共的代码抽离成为一个单独的 js 文件,作为一个模块。模块只有通过 module.exports 或者 exports 才能对外暴露接口。

注意:

  • exportsmodule.exports 的一个引用,因此在模块里边随意更改 exports 的指向会造成未知的错误。所以更推荐开发者采用 module.exports 来暴露模块接口,除非你已经清晰知道这两者的关系。
  • 小程序目前不支持直接引入 node_modules , 开发者需要使用到 node_modules 时候建议拷贝出相关的代码到小程序的目录中,或者使用小程序支持的 npm 功能。
  1. // common.js
  2. function sayHello(name) {
  3. console.log(`Hello ${name} !`)
  4. }
  5. function sayGoodbye(name) {
  6. console.log(`Goodbye ${name} !`)
  7. }
  8. module.exports.sayHello = sayHello
  9. exports.sayGoodbye = sayGoodbye

​在需要使用这些模块的文件中,使用 require 将公共代码引入

  1. var common = require('common.js')
  2. Page({
  3. helloMINA: function() {
  4. common.sayHello('MINA')
  5. },
  6. goodbyeMINA: function() {
  7. common.sayGoodbye('MINA')
  8. }
  9. })

文件作用域

在 JavaScript 文件中声明的变量和函数只在该文件中有效;不同的文件中可以声明相同名字的变量和函数,不会互相影响。

通过全局函数 getApp 可以获取全局的应用实例,如果需要全局的数据可以在 App() 中设置,如:

  1. // app.js
  2. App({
  3. globalData: 1
  4. })
  1. // a.js
  2. // The localValue can only be used in file a.js.
  3. var localValue = 'a'
  4. // Get the app instance.
  5. var app = getApp()
  6. // Get the global data and change it.
  7. app.globalData++
  1. // b.js
  2. // You can redefine localValue in file b.js, without interference with the localValue in a.js.
  3. var localValue = 'b'
  4. // If a.js it run before b.js, now the globalData shoule be 2.
  5. console.log(getApp().globalData)