我試圖用2個塊創建視圖。每個塊有不同的實時數據源。當我使用Jade`s包括主視圖中,:Jade/Pug中帶有動態數據的部分模板
extends ../layout
block content
link(rel='stylesheet', type='text/css', href='/stylesheets/people.css')
include ../store/peopleTemplate.pug
我得到錯誤
Cannot read property 'people' of undefined.
的原因是因爲數據仍在加載。如果排除包含和替代功能復甦的數據使用
res.render(template, { data:localData });
模板不添加到視圖。
如何將來自不同來源的動態數據添加到2個或多個部分視圖到1個視圖?謝謝