Jade和Express在这里的小问题。对我来说,不可能在块中使用块......
所以让我们假设我的layout.jade看起来像这样:
!!!
html
head
scripts meta tags and other stuff here...
body
block content
例如home.jade的页面如下所示:
extends layout
block content
html stuff here
block table
table.jade看起来像这样:
extends home
block table
html table here
这甚至可能吗?我的意思是,我想实现只有表格在响应中呈现,比如
res.render('table', data);
并且视图仅更新表。
有什么建议吗? 谢谢..