小程序-模块化

Posted 吴小明

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了小程序-模块化相关的知识,希望对你有一定的参考价值。

require

  any require(string path)
  引入模块。返回模块通过module.exports或exports暴露的接口。

参数
名称 类型 说明
path string 需要引入模块文件相对于当前文件的相对路径,或npm模块名,或npm模块路径。不支持绝对路径

示例代码:
            // common.js
            function sayHello(name){
                console.log(`hello ${name}`)
            }
            function sayGoodbye(name){
                console.log(`goodbye ${name}`)
            }
            module.exports.sayHello=sayHello
            exports.sayGoodbye=sayGoodbye

            var common=require("common.js")
            Page({
                helloMINA:function(){
                    common.sayHello("MINA")
                },
                goodbyeMINA:function(){
                    common.sayGoodbye("MINA")
                }
            })

module

    当前模块对象

属性
属性 类型 说明
exports Object 模块向外暴露的对象,使用require引用该模块时可以获取

示例代码:
            // common.js
            function sayHello(name){
                console.log(`hello ${name}`)
            }
            function sayGoodbye(name){
                console.log(`goodbye ${name}`)
            }

            module.exports.sayHello=sayHello
            exports.sayGoodbye=sayGoodbye

exports

    module.exports的引用

示例代码:
            // common.js
            function sayHello(name){
                console.log(`hello ${name}`)
            }
            function sayGoodbye(name){
                console.log(`goodbye ${name}`)
            }

            module.exports.sayHello=sayHello
            exports.sayGoodbye=sayGoodbye

 

导出:

  module.exports={};

引入:

  const util=require("../../utils/util");

以上是关于小程序-模块化的主要内容,如果未能解决你的问题,请参考以下文章

小程序各种功能代码片段整理---持续更新

如何使用模块化代码片段中的LeakCanary检测内存泄漏?

Android获取各个应用程序的缓存文件代码小片段(使用AIDL)

提效小技巧——记录那些不常用的代码片段

Android小部件,启动一个片段?

vscode 开发微信小程序环境配置