response.render 内で別の高速ルートを呼び出すにはどうすればよいですか。以下は私のコードスニペットです。/pages/performance が要求されたときに performance.jade をレンダリングし、/api/notifications から返されたデータを jade に入力したいと考えています。
module.exports = function(app){
app.get('/pages/performance', function(req, res){
res.render("performance", {results: app.get("/api/notifications", function (request, response) {return response.body;}), title: "Performance"});
});
};
/api/notifications は、次のように jade で使用される json データを返します。
block pageContent
for result in results
p #{result.message}