当前位置: 首页>>代码示例>>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;未经允许,请勿转载。