在utils 文件夹中可以定义二一些公共的方法js,比如做一些时间戳的转换,属性的计算等;
方法一:
暴露 utils/all.js
var comm = {
getMyName: function(){
return 'my name is CR7'
},
getMyAge: function() {
return '36'
}
}
module.exports = comm
引入 pages/index/index.js
import comm from '../../utils/all'
Page({
console.log(comm.getMyName)
})
方法二:
function sayHello(name) {
console.log(`Hello ${name} !`)
}
module.exports.sayHello = sayHello
var common = require('common.js')
Page({
helloMINA: function() {
common.sayHello('MINA')
}
})