art-template官网

http://aui.github.io/art-template/zh-cn/koa/index.html

配置art-template

1、安装依赖

  1. yarn add art-template koa-art-template

2、配置信息

  1. const Koa = require('koa');
  2. const render = require('koa-art-template');
  3. const app = new Koa();
  4. render(app, {
  5. root: path.join(process.cwd(), 'pages'),
  6. extname: '.html',
  7. debug: process.env.NODE_ENV !== 'production'
  8. });
  9. app.use(async function (ctx) {
  10. await ctx.render('user');
  11. });
  12. app.listen(8080);
  1. 可以通过这个模块的配置,实现通过后端网址来打开页面,实现跳转

3、语法

1-1 each

  1. {{each movies}}
  2. <p>{{$value.title}}</p>
  3. {{/each}}