AI通识课
为什么我觉得HonoJS的API设计跟Vert.x的API设计很像?
确实很像,比如下面的HonoJS典型代码里:
import { Hono } from "hono";
const app = new Hono()
app.post('/upload', async (c) => { const body = await c.req.parseBody() console.log(body['file']) // File | string return c.text("...")})
export default app
其中的c:Context 其实就类似Vertx里的RoutingContext。
「架构师的修炼」大礼包
管理者入门与进阶课程