【发布时间】:2016-05-09 14:29:06
【问题描述】:
有没有办法在 ionic 2 toast 中设置文本消息的样式?
我试过这个:
let toast = Toast.create({
message: "Some text on one line. <br /><br /> Some text on another line.",
duration: 15000,
showCloseButton: true,
closeButtonText: 'Got it!',
dismissOnPageChange: true
});
toast.onDismiss(() => {
console.log('Dismissed toast');
});
this.nav.present(toast);
}
但显然你不能在文本中使用 html,所以我猜我的问题的答案是否定的?
【问题讨论】: