How does koa implement MVC?

router.get("/meibrain", async (ctx, next) => {
    await ctx.render("meibrain", {
        imgSrc: "/images/newsbannenr.png",
        // koa-router
    })
})
Mar.02,2021

sequelize or mongoose


intercede the required data on the render function, and then pass it to the second parameter of render.
by the way, what does the MVC you asked have to do with this code?

Menu