kobezzza,
это будет примерно так
import {Controller} from "../../lib/decorators/index";
import {RequestMapping} from "../../lib/decorators/index";
import {RequestMethod} from "../../lib/decorators/index";
@Controller("/")
export default class {
@RequestMapping({ value: "/test", method: RequestMethod.POST} )
async getTestPagePost(ctx) {
console.log(ctx.mongodb);
return Promise.resolve("hello test");
}
@RequestMapping({ value: "/test", method: RequestMethod.GET} )
async getTestPagePost(ctx) {
console.log(ctx.mongodb);
return Promise.resolve("hello test");
}
}