如何将动态数据放入ngx-toastr?

时间:2018-09-05 07:28:57

标签: angular typescript angular5

登录后,我想显示一个烤面包机作为“欢迎使用已登录的用户名”。 enter image description here

2 个答案:

答案 0 :(得分:0)

this.toastr.success('Welcome to '+authenticUser.user.firstName,'Success')

this.toastr.success(`Welcome to ${authenticUser.user.firstName}`,'Success');

答案 1 :(得分:0)

在Angular或任何编程环境中,建议使用反引号进行字符串连接。

this.toastr.success(`Welcome to ${authenticUser.user.firstName}`,'Success');