翡翠相当于<%=%>

时间:2016-03-16 20:57:03

标签: express pug

我正在尝试使用express-toastr(https://github.com/kamaln7/express-toastr)在我的快速应用程序上实现toastr通知。文档说明在控制器中包含以下内容之后:

 if (err)
 {
 req.toastr.error('Invalid credentials.');
 } else {
 req.toastr.success('Successfully logged in.', "You're in!");
 }

我们必须在视图中包含库。好的,可以。但我们还必须包括这样的内容:

<%= req.toastr.render() %>

玉石上的这个相当于什么?

由于

1 个答案:

答案 0 :(得分:2)

使用:     div#{req.toastr.render()}

相关帖子:https://www.filosophy.org/post/34/using_javascript_functions_within_the_jade_templating_language/