specialgirlgotoheaven / MyBlog

MyBlog
0 stars 0 forks source link

多个子模块的api合并 #151

Open specialgirlgotoheaven opened 5 years ago

specialgirlgotoheaven commented 5 years ago

// 利用require的context获取api下面js文件,true代表子文件也会被检索 const api = require.context('./modules', true, /.js$/)

let API = {} // 统一处理所有输出,最终输出api使得出口统一 api.keys().forEach(key => { Object.assign(API, api(key).default) })

export default API