答案 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');