0.0.13 • Published 3 years ago

think-view-ejs v0.0.13

Weekly downloads
41
License
-
Repository
-
Last release
3 years ago

think-view-ejs

Build Status Coverage Status npm

Compile view templates with EJS for ThinkJS 3.x.

Install

npm install think-view-ejs

Usage

edit config file src/config/adapter.js, add options for ejs adapter:

const ejs = require('think-view-ejs');
exports.view = {
  type: 'ejs',
  common: {
    viewPath: path.join(think.ROOT_PATH, 'view'),
    extname: '.html',
    sep: '_' //seperator between controller and action
  },
  ejs: {
    //options
    handle: ejs,
    beforeRender: (ejs, handleOptions) => {
      //do something before render the template.
    }
  }
}

Options

Default options:

const defaultOptions = {
  cache: true
}

You can override it and add other options by editing file src/config/adapter.js :

exports.view = {
  type: 'ejs',
  ejs: {
    handle: ejs,
    options: {
      //override `cache` option
      cache: false
    },
    beforeRender: (ejs, handleOptions) => {
      //do something before render the template.
    }
  }
}

Please refer to https://github.com/mde/ejs#options for more information on EJS options.

beforeRender

beforeRender is a function that you can handle something before rendering the template file. It exposes 2 parameters:

  • ejs — the original ejs module
  • handleOptions — current configure of ejs adapter
0.0.13

3 years ago

0.0.12

4 years ago

0.0.11

7 years ago

0.0.9

7 years ago

0.0.8

7 years ago

0.0.4

7 years ago

0.0.3

7 years ago

0.0.2

7 years ago

0.0.1

7 years ago