16

我正在使用此代码在 AngularJS 网站上显示祝酒词。我需要知道如何在正文中添加换行符 ( <br/>)。当我使用这个问题中显示的选项时,toastr 会在屏幕上呈现标签,而不是将其解释为 HTML。我怎样才能在吐司中换行?

4

1 回答 1

23

有两种方法可以在 toast 中允许一些 HTML 标记,包括换行符。

包括'body-output-type': 'trustedHtml'toaster-options

<toaster-container toaster-options="{
    'closeButton': false,
    'debug': false,
    'position-class': 'toast-bottom-right',
    'onclick': null,
    'showDuration': '200',
    'hideDuration': '1000',
    'timeOut': '5000',
    'extendedTimeOut': '1000',
    'showEasing': 'swing',
    'hideEasing': 'linear',
    'showMethod': 'fadeIn',
    'hideMethod': 'fadeOut', 
    'body-output-type': 'trustedHtml'
}"></toaster-container>

或包括'trustedHtml'在调用中toaster.pop()

toaster.pop('success', 'Saved', 'Saved<br/>it!', 3000, 'trustedHtml');

或者

toaster.pop({
    type: 'success',
    title: 'Saved',
    body: 'Saved<br/>it!',
    bodyOutputType: 'trustedHtml'
});

资源

于 2015-07-06T19:52:02.277 回答