我有这个控制器,我想点击页面到addClient,它位于views目录的agencyclient目录中。
addAgencyClient: function (req, res) {
res.view('');
},
答案 0 :(得分:0)
如果我理解你的问题,你想要返回位于agencyclient目录中的视图addClient.ejs吗?
如果这是正确的,你可以这样做:
addAgencyClient: function (req, res) {
return res.view('agencyclient/addClient');
},