admin管理员组文章数量:1341475
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 badges2 Answers
Reset to default 7You 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.
本文标签: javascriptPartial template in JadePug with dynamic dataStack Overflow
版权声明:本文标题:javascript - Partial template in JadePug with dynamic data - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743655036a2516976.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论