本文整理匯總了TypeScript中angular2-modal/plugins/bootstrap.Modal.alert方法的典型用法代碼示例。如果您正苦於以下問題:TypeScript Modal.alert方法的具體用法?TypeScript Modal.alert怎麽用?TypeScript Modal.alert使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類angular2-modal/plugins/bootstrap.Modal
的用法示例。
在下文中一共展示了Modal.alert方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。
示例1: alert
alert(content: string, title: string) {
this.modal.alert()
.size('lg')
.showClose(true)
.title(title)
.body(content).open();
}
示例2: handleError
private handleError(path: string, res: Response): void {
var title = 'Error';
var message = 'Request to <strong>' + this.getUrl(path) + '</strong> has returned <strong>' + res.status + '</strong>.';
this.modal.alert()
.titleHtml('<h3 class="modal-title text-danger">' + title + '</h3>')
.body('<span class="text-danger">' + message + '</span>')
.open();
}
示例3: onClick
onClick() {
this.modal.alert()
.size('lg')
.showClose(true)
.title('A simple Alert style modal window')
.body(`
<h4>Alert is a classic (title/body/footer) 1 button modal window that
does not block.</h4>
<b>Configuration:</b>
<ul>
<li>Non blocking (click anywhere outside to dismiss)</li>
<li>Size large</li>
<li>Dismissed with default keyboard key (ESC)</li>
<li>Close wth button click</li>
<li>HTML content</li>
</ul>`)
.open();
}