我将我的路线的结构设置为=> by this post。
但是我也为控制器执行了相同的步骤。
但是我无法调用这些函数。
module.exports = {
Login(request , h){
return h.response('Hello Ram');
},}
它存在于/ controller / common
中然后我在/ controller中创建了index.js
文件
以及该文件
const commonController = require('./common/index');
module.exports = [].concat(
commonController
);
所以如何在路由的处理程序选项中调用特定函数。将来我必须添加更多的控制器