fix createAction singer bug

This commit is contained in:
sean 2017-07-10 11:59:13 +08:00
parent 72dae6a52f
commit fb58f369dc
2 changed files with 2 additions and 2 deletions

View File

@ -56,7 +56,7 @@ createAction('interface', 'del', 'post', 'del')
*/
function createAction(controller, path, method, action){
router[method](INTERFACE_CONFIG[controller].prefix + path, async (ctx) => {
let inst = yapi.getInst(INTERFACE_CONFIG[controller].controller, ctx);
let inst = new INTERFACE_CONFIG[controller].controller(ctx);
await inst[action].call(inst, ctx);
})
}

View File

@ -90,7 +90,7 @@ function createAction(controller, path, method, action) {
while (1) {
switch (_context.prev = _context.next) {
case 0:
inst = _yapi2.default.getInst(INTERFACE_CONFIG[controller].controller, ctx);
inst = new INTERFACE_CONFIG[controller].controller(ctx);
_context.next = 3;
return inst[action].call(inst, ctx);