热门IT资讯网

「小程序JAVA实战」 小程序抽离公用方法进行模块化(12)

发表于:2024-11-30 作者:热门IT资讯网编辑
编辑最后更新 2024年11月30日,小程序的模块化,把砖磊成一个墩子,用的时候把整个墩子移走。js更好的调用,应用更加公用化。源码:https://github.com/limingios/wxProgram.git 中的No.7小程序

小程序的模块化,把砖磊成一个墩子,用的时候把整个墩子移走。js更好的调用,应用更加公用化。源码:https://github.com/limingios/wxProgram.git 中的No.7

小程序的模块化

  • 抽离通用方法作为通用函数


  • 构建utils-common类


  1. 官方的阐述
    >https://developers.weixin.qq.com/miniprogram/dev/framework/app-service/module.html

  1. 程序演示

events.js

//events.js//获取应用实例const app = getApp()var common = require('../untils/common.js')Page({  data: {    motto: 'Hello World',    userInfo: {},    hasUserInfo: false,    canIUse: wx.canIUse('button.open-type.getUserInfo')  },  clickMe: function(e){    console.log("你点击我这里出来了!")    console.log(e)    console.log(e.currentTarget.dataset.fordate)    common.sayHello("公众号:编程坑太多")    common.sayGoodbye("[编程坑太多]")  }})

common.js

// common.jsfunction sayHello(name) {  console.log(`Hello ${name} !`)  console.log("Hello "+name+" !")}function sayGoodbye(name) {  console.log(`Goodbye ${name} !`)  console.log("Goodbye " + name + " !")}module.exports.sayHello = sayHelloexports.sayGoodbye = sayGoodbye

PS:需要注意的是

 console.log(`Goodbye ${name} !`) console.log("Goodbye " + name + " !")

区别如果用了 ${} 最外层需要用"符号,如果你喜欢老套路可以按照我的 "Goodbye " + name + " !" 这种。


>>原创文章,欢迎转载。转载请注明:转载自IT人故事会,谢谢!
>>原文链接地址:「小程序JAVA实战」 小程序抽离公用方法进行模块化(12)


0