koa 中间件 koa-art-template 的使用
Posted guangzhou11
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了koa 中间件 koa-art-template 的使用相关的知识,希望对你有一定的参考价值。
例子
const Koa = require(‘koa‘); const render =require(‘koa-art-template‘); const path= require(‘path‘); //创建服务器 const app=new Koa(); //渲染 render(app, { root: path.join(__dirname, ‘view‘), extname: ‘.html‘, debug: process.env.NODE_ENV !== ‘production‘ }); app.use(async function (ctx) { await ctx.render(‘index‘); }); app.listen(8888,()=>{ console.log(‘启动了‘) });
效果:
输出: hello world
以上是关于koa 中间件 koa-art-template 的使用的主要内容,如果未能解决你的问题,请参考以下文章