格式如下:
引用使用:
微信小程序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
});
}
})
欢迎关注,有问题一起学习欢迎留言、评论。
你要保守你心,胜过保守一切。
作者:刘俊涛的博客