我正在尝试使用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() %>
玉石上的这个相当于什么?
由于
答案 0 :(得分:2)
使用: div#{req.toastr.render()}
相关帖子:https://www.filosophy.org/post/34/using_javascript_functions_within_the_jade_templating_language/