网易严选小程序学习笔记 2
程序员文章站
2022-03-22 09:41:15
node.js后端控制层controllers代码mpvue-shop-node/controllers/index.jsconst _ = require('lodash')const fs = require('fs')const path = require('path')// 映射 d 文件夹下的文件为模块const mapDir = d => { const tree = {} // 获取当前文件夹下的所有文件夹和文件,分成两组,文件夹一组,文件一组 c...
node.js后端
控制层controllers
代码
mpvue-shop-node/controllers/index.js
const _ = require('lodash')
const fs = require('fs')
const path = require('path')
// 映射 d 文件夹下的文件为模块
const mapDir = d => {
const tree = {}
// 获取当前文件夹下的所有文件夹和文件,分成两组,文件夹一组,文件一组
const [dirs, files] = _(fs.readdirSync(d)).partition(p => fs.statSync(path.join(d, p)).isDirectory())
// 映射文件夹
dirs.forEach(dir => {
tree[dir] = mapDir(path.join(d, dir))
});
// 映射文件
files.forEach(file => {
// 获取文件后缀名字
if (path.extname(file) === '.js') {
tree[path.basename(file, '.js')] = require(path.join(d, file))
}
})
return tree
}
// 默认导出当前文件夹下的映射
module.exports = mapDir(path.join(__dirname))
- require()引入js库lodash和node模块fs、path
- lodash 是一套工具库,它内部封装了诸多对字符串、数组、对象等常见数据类型的处理函数(更多学习参考)
- fs 是node的一个文件系统(File System)
- path 是处理文件路径的小工具,用于连接路径。该方法的主要用途在于,会正确使用当前系统的路径分隔符,Unix系统是"/",Windows系统是""
- 定义并导出函数mapDir,参数为
path.join(__dirname)
,函数返回对象tree - 在routes中的使用方法为:
const controllers = require('../controllers/index')
router.get('/index/index', controllers.home.index)
所以传入的参数path.join(__dirname) == ‘home/index’ (不确定,参考:网易严选小程序学习笔记 3)
项目来源:cleversnail/mpvue-koa
学习参考:b站、掘金
本文地址:https://blog.csdn.net/u014219356/article/details/107379667
上一篇: Safari浏览器不支持window.open解决方案
下一篇: DOS下内存的配置