mirror of
https://github.com/YMFE/yapi.git
synced 2025-03-31 14:50:26 +08:00
fix createAction singer bug
This commit is contained in:
parent
72dae6a52f
commit
fb58f369dc
@ -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);
|
||||
})
|
||||
}
|
||||
|
@ -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);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user