要在Angular 5中使用ngx-toastr显示HTML消息,您可以按照以下步骤进行操作:
首先,确保您已经安装了ngx-toastr,并在您的Angular项目中进行了配置。
在您的组件中,导入ToastrService:
import { ToastrService } from 'ngx-toastr';
constructor(private toastr: ToastrService) {}
this.toastr.success('成功消息', '带有HTML的消息', {
enableHtml: true
});
请注意,要在消息中显示HTML内容,您需要将enableHtml
选项设置为true。
完整的示例代码如下:
import { Component } from '@angular/core';
import { ToastrService } from 'ngx-toastr';
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.css']
})
export class AppComponent {
constructor(private toastr: ToastrService) {}
showSuccess() {
this.toastr.success('成功消息', '带有HTML的消息', {
enableHtml: true
});
}
}
希望这可以帮助到您!