请问nodejs里如何实现promise动态指定函数名? 财富值39

2016-07-08 08:24发布

//机器统计 exports.getMachineAll = (req,res,next)=>{     chart.getMachineAll()     .then((result)=>{         res.json(result);     }) } //电话列表 exports.getPhoneList = (req,res,next)=>{     chart.getPhoneList()     .then((results)=>{          res.json(result);     }) }

mvc结构的控制器里-根据路由进来的有大量的类似这种结构,前端通过$.ajax调用,想写在一个函数里,函数名作为参数,请问该如何做呢?

7条回答

用法如下:

一周热门 更多>