當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript Modal.alert方法代碼示例

本文整理匯總了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();
 }
開發者ID:empirefox,項目名稱:ec-front,代碼行數:7,代碼來源:modal.service.ts

示例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();
 }
開發者ID:htwg-cloud-application-development,項目名稱:frontend,代碼行數:8,代碼來源:rest.service.ts

示例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();
 }
開發者ID:EasonBlack,項目名稱:angular2-study,代碼行數:18,代碼來源:app.component.ts


注:本文中的angular2-modal/plugins/bootstrap.Modal.alert方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。