1

我已将 swig 作为模板引擎添加到我的 KeystoneJS 项目中,但它不会加载我的模板。我已将以下内容添加到我的 keystone.js 文件中:

// Require keystone
var keystone = require('keystone');
var swig = require('swig');

// Initialise Keystone with your project's configuration.
// See http://keystonejs.com/guide/config for available options
// and documentation.

keystone.init({

    'name': 'it_blog',
    'brand': 'it_blog',

    'less': 'public',
    'static': 'public',
    'favicon': 'public/favicon.ico',
    'views': 'templates/views',
    'view engine': 'swig',
    'custom engine': swig.renderFile,
    'auto update': true,
    'session': true,
    'auth': true,
    'user model': 'User',
    'cookie secret': '*omitted*'

}); 

这是我得到的 node.js 错误:

Error thrown for request: /
Error: Failed to lookup view "index"
  at Function.app.render    (/Users/admin/Desktop/Development/my_project/node_modules/keystone/node_modules/express/lib/application.js:495:17)

我按照此处列出的步骤操作:https ://github.com/JedWatson/keystone/issues/270

4

1 回答 1

0

Yeoman的官方Keystone 生成器现在包括 Swig 支持和示例模板,我建议使用它来启动项目,选择swig作为模板引擎,并复制其实现。

开始使用生成器的说明在这里:http: //keystonejs.com/getting-started/

于 2014-08-10T13:02:08.650 回答