我正在使用Angular 2,我想知道是否可以在toast消息中添加超链接。我在网上看了一下,看到了一些可能有用的东西,但我想知道是否有一个明确的切割和简单的方法来实现这一点。谢谢!
编辑:或者,如果有办法通过点击吐司信息导航到不同的网址
答案 0 :(得分:2)
在吐司中嵌入任何类型的HTML内容有两种不同的方法。
通过从angular2-toaster
导入BodyOutputType,您可以指定TrustedHtml或Component。第一个允许您将html直接传递给toast的body
参数:
import { BodyOutputType } from 'angular2-toaster';
popTrustedHtmlToast() {
var toast: Toast = {
type: 'info',
title: 'Here is a Toast Title',
body: '<a target="_blank" href="https://www.google.com">Here is a Toast Body<a/>',
bodyOutputType: BodyOutputType.TrustedHtml,
showCloseButton: true
};
this.toasterService.pop(toast);
}
第二个允许您传递组件的名称。该组件被动态加载并呈现为toast body。
@Component({
selector: 'custom-component',
template: `<a target="_blank" href="https://www.google.com">Here is a Toast Body</a>`
})
export class CustomComponent { }
@NgModule({
bootstrap: [CustomComponent],
declarations: [CustomComponent]
})
export class CustomComponentModule { }
popComponentToast() {
var toast: Toast = {
type: 'info',
title: 'Here is a Toast Title',
body: CustomComponent,
bodyOutputType: BodyOutputType.Component,
showCloseButton: true
};
this.toasterService.pop(toast);
}
您可以在此plunker中看到这两种方法。