最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
微信小程序module.exports模块化操作实例浅析
时间:2022-06-25 15:26:06 编辑:袖梨 来源:一聚教程网
本文实例讲述了微信小程序module.exports模块化操作。分享给大家供大家参考,具体如下:
文件 目录如上图:
看到网上写的模块化都比较复杂,写个入门版的 好让大家理解理解
common.js
var studentList = [ { name: "xiaoming", age: "22", hobby: "sleep" }, { name: "xiaohong", age: "22", hobby: { one: "eat", two: "eatfood" } } ] //模块化 module.exports = { studentList: studentList }
index.js:
var common = require("../aa/common.js") //获取应用实例 var app = getApp() Page({ data: { }, onLoad: function () { this.setData({ studentList:common.studentList }); } })
index.wxml:
{{item.name}}
因为取的是name,所以最后输出的是xiaoming 和xiaohong。如下图所示(这里就懒得弄样式了~):
相关文章
- 逆水寒手游流派首席竞选怎么玩 11-07
- 宝可梦大集结新手宝可梦怎么选 11-07
- 光遇11.7每日任务怎么做 11-07
- 英雄联盟双城之战2主题曲怎么样 11-07
- 《怪物猎人荒野》锁头机制介绍 11-07
- 逆水寒手游流派首席竞选怎么玩 逆水寒手游流派首席竞选玩法介绍 11-07