[TOC]小例子 // node server.js const Koa = require('koa'); const app = new Koa(); app.use(async ctx => { ctx.body = 'Hello World'; }); app.listen(3000); koa直接渲染页面面临的问题, 动态替换dom, 事件需要重新绑定,解决: 写入