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

javascript - Partial template in JadePug with dynamic data - Stack Overflow

programmeradmin2浏览0评论

I am trying to create view with 2 blocks. Each block had different real time data source. When I use Jade`s include within main view, :

extends ../layout

block content
 link(rel='stylesheet', type='text/css', href='/stylesheets/people.css')
 include ../store/peopleTemplate.pug

I get error

Cannot read property 'people' of undefined.

The reason is because the data is still loading. If exclude that include and instead in function that revives data use

res.render(template, {  data:localData });

The template is not added to the view.

How to add 2 or more partial views with dynamic data from different sources to 1 view? Thank you

I am trying to create view with 2 blocks. Each block had different real time data source. When I use Jade`s include within main view, :

extends ../layout

block content
 link(rel='stylesheet', type='text/css', href='/stylesheets/people.css')
 include ../store/peopleTemplate.pug

I get error

Cannot read property 'people' of undefined.

The reason is because the data is still loading. If exclude that include and instead in function that revives data use

res.render(template, {  data:localData });

The template is not added to the view.

How to add 2 or more partial views with dynamic data from different sources to 1 view? Thank you

Share Improve this question asked Jul 27, 2016 at 19:44 kaplievabellkaplievabell 8211 gold badge12 silver badges27 bronze badges
Add a ment  | 

2 Answers 2

Reset to default 7

You can achieve this with mixins.

layout.pug

doctype html
html
  head
    ...
  body
    block content

pets-partial.pug

mixin petslist(pets)
  ul
    each pet in pets
      li #{pet}

pets.pug

extends layout

include pets-partial

block content
  h1 Dogs
  +petslist(dogs)

  h1 Cats
  +petslist(cats)

https://pugjs/language/mixins.html

In jade the syntax is slightly different then in pug 2.

After extensive research, Pug/Jade Template engine does not support dynamic template rendering or usage of multiple partials within one view. Handlebars was remended for this scenario.

发布评论

评论列表(0)

  1. 暂无评论