0
我想執行res.render,但不是通過模板文件作爲參數是這樣的:快遞&res.render傳遞模板字符串
res.render('index.hbs', { a: 'B' });
我希望能夠通過模板作爲一個字符串:
let template = '{{ a }}'
res.render(template, { a: 'B' });
上面的代碼顯然不工作,因爲res.render只接受文件路徑/名稱。有關如何實現這一目標的任何想法?