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 的使用的主要内容,如果未能解决你的问题,请参考以下文章

Koa 系列 — Koa 中间件机制解析

Koa 系列 — 如何编写属于自己的 Koa 中间件

koa2中间件简易分析

koa2中间件简易分析

koa源码阅读[2]-koa-router

koa 常用中间件