將一些公共的代碼抽離成為一個單獨的 js 文件笤昨,作為一個模塊牢贸。模塊只有通過 module.exports 或者 exports 才能對外暴露接口
/* 定義代碼模塊utils.js
const getVersion = () => {
return "1.0.0"
}
module.exports = {
getVersion: getVersion
}
/* 定義主程序方法app.js
App({
name:"小程序",
getName:function(){
return this.name;
}
})
/* 使用代碼模塊
// 引入公共JS模塊
var util = require("../../utils/util.js");
// 獲取主程序?qū)ο?var wx = getApp();
Page({
onReady: function() {
console.log(util.formatTime(new Date()));
console.log(util.getVersion());
console.log(wx.getName())
}
})