小程序开发:ES6的模块化

在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')
  }
})
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值