浏览器默认是不可以看到静态页面,通过koa-static这个模块,可以使我们在浏览器上看到静态资源 const static = require("koa-static");app.use(static(path.join(__dirname,"static")))