最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - How to set handlebars layout directory? - Stack Overflow

programmeradmin1浏览0评论

This is my nodejs express setup for view and directories using handlebars:

- server.js
- routes
    |-- index.js
-config
    |-- config.js
- client
    |-- public
    |     | -- js
    |     | -- css
    |     | -- font
    |-- views
         |-- index.html
         |-- layout
              |-- layout.handlebars
    | ... other directories

And here is my node.js code:

// Set static folder
app.use(express.static(path.join(__dirname, '/client/public')));
// Views and view engine
app.set('views', path.join(__dirname, '/client/views'));
app.set('view engine', 'ejs');
app.engine('html', handlebars({ defaultLayout: 'layout' }));

Handlebars is not being able to find my layout. Its looking at the app/views/layouts/layout.handlebars, but it should be looking at app/client/views/layouts/layout.handlebars

What am I missing here ?

This is my nodejs express setup for view and directories using handlebars:

- server.js
- routes
    |-- index.js
-config
    |-- config.js
- client
    |-- public
    |     | -- js
    |     | -- css
    |     | -- font
    |-- views
         |-- index.html
         |-- layout
              |-- layout.handlebars
    | ... other directories

And here is my node.js code:

// Set static folder
app.use(express.static(path.join(__dirname, '/client/public')));
// Views and view engine
app.set('views', path.join(__dirname, '/client/views'));
app.set('view engine', 'ejs');
app.engine('html', handlebars({ defaultLayout: 'layout' }));

Handlebars is not being able to find my layout. Its looking at the app/views/layouts/layout.handlebars, but it should be looking at app/client/views/layouts/layout.handlebars

What am I missing here ?

Share Improve this question asked Dec 20, 2016 at 22:15 MendesMendes 18.6k38 gold badges166 silver badges282 bronze badges 1
  • Does this answer your question? How to change default layout in express using handlebars? – Anand Raja Commented Jan 27, 2020 at 6:43
Add a ment  | 

1 Answer 1

Reset to default 7

Seems like you are using express-handlebars

You need to point the directories while creating an instance of it.

const hbs = exphbs.create({
    extname      :'hbs',
    layoutsDir   : 'path/to/layout/directory',
    defaultLayout: 'main',
    helpers      : 'path/to/helpers/directory',
    partialsDir  : [
        'path/to/partials/directory'
    ]
});

If you don't initiate it with custom folder locations, it looks up for the files in the default locations.

Also, the view engine needs to be set as hbs.engine not ejs

app.engine('hbs', hbs.engine);
app.set('view engine', 'hbs');
发布评论

评论列表(0)

  1. 暂无评论