我是靠谱客的博主 简单舞蹈,这篇文章主要介绍微信小程序 教程之模块化,现在分享给大家,希望可以做个参考。

文件作用域
在JavaScript文件中声明的变量和函数只在该文件中有效;不同的文件中可以声明相同名字的变量和函数,不会互相影响。
通过全局函数getApp()可以获取全局的应用实例,如果需要全局的数据可以在App()中设置,如:

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

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

复制代码
1
2
3
4
5
6
7
// common.js function sayHello(name) { console.log('Hello ' + name + '!') } module.exports = { sayHello: sayHello }
登录后复制

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

复制代码
1
2
3
4
5
6
var common = require('common.js') Page({ helloMINA: function() { common.sayHello('MINA') } })
登录后复制

以上就是微信小程序 教程之模块化的内容,更多相关内容请关注PHP中文网(www.uoften.com)!

最后

以上就是简单舞蹈最近收集整理的关于微信小程序 教程之模块化的全部内容,更多相关微信小程序内容请搜索靠谱客的其他文章。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(69)

评论列表共有 0 条评论

立即
投稿
返回
顶部