- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
所以我尝试使用 MdDialog 来显示错误消息。不幸的是,它不是以弹出窗口的形式出现,而是以页面底部的 block 形式出现。
我需要查看或更改什么才能使其正常工作?
下面的代码
common-modal.component.html
<h2 md-dialog-title>{{ title }}</h2>
<md-dialog-content>
<p>{{ message }}</p>
</md-dialog-content>
<md-dialog-actions align="right">
<button md-raised-button md-dialog-close>{{ closeText }}</button>
<button md-raised-button *ngIf="enableNext" id="sm-next-button"
(click)="dialogRef.close(true)">{{ nextText }}</button>
</md-dialog-actions>
common-modal.component.ts
import { Component } from '@angular/core';
import { MdDialogRef } from "@angular/material";
@Component({
selector: 'common-modal',
templateUrl: 'common-modal.component.html',
styleUrls: [ '../modal.component.scss']
})
export class CommonModalComponent {
/**
* The text for the header or title of the dialog.
*/
title: string;
/**
* The text for the body or content of the dialog.
*/
message: string;
/**
* The text of the close button. (No, Done, Cancel, etc)
*/
closeText: string;
/**
* The text of the confirming button. (Yes, Next, etc)
*/
nextText: string;
/**
* True to show the next button. False to hide it.
*/
enableNext: boolean;
constructor(public dialogRef: MdDialogRef<CommonModalComponent>) { }
}
error-modal.service.ts
import { Injectable } from "@angular/core";
import { MdDialog, MdDialogRef, MdDialogConfig } from "@angular/material";
import { Observable } from "rxjs";
import { CommonModalComponent } from "./common-modal/common-modal.component";
import { HIDE_NEXT_BUTTON } from "../constants";
@Injectable()
export class ErrorModalService
{
constructor(private dialog: MdDialog) { }
config = new MdDialogConfig();
/**
* Show the MdDialog as an alertDialog
* @param title {string} The title text of the dialog
* @param message {string} The message content text of the dialog
* @param closeText {string} The text of the close button. (No, Done, Cancel, etc.) Default is OK
* @return {Observable<any>} True will be returned if the next button is clicked. Nothing will be returned if canceled.
*/
public show( title: string, message: string, closeText = "OK"): Observable<any> {
let dialogRef: MdDialogRef<CommonModalComponent>;
this.config.role = 'alertdialog';
dialogRef = this.dialog.open(CommonModalComponent, this.config);
dialogRef.componentInstance.title = title;
dialogRef.componentInstance.message = message;
dialogRef.componentInstance.closeText = closeText;
dialogRef.componentInstance.nextText = '';
dialogRef.componentInstance.enableNext = HIDE_NEXT_BUTTON;
return dialogRef.afterClosed();
}
}
login.component.ts
import { Component } from '@angular/core'
import { Router } from '@angular/router'
import { Response } from '@angular/http'
import { LoginService } from './login.service'
import { Login } from './loginModel'
import { ErrorModalService } from "../../shared/modal/error-modal.service";
@Component({
selector: 'login',
providers: [LoginService],
templateUrl: 'login.component.html',
styleUrls: ['login.component.scss']
})
export class LoginComponent {
loginModel: Login = new Login('', '');
protected userName: string = '';
protected password: string = '';
constructor(private router: Router,
private loginService: LoginService,
private errorModalService: ErrorModalService) { }
private onSubmit() {
this.loginService.login(this.loginModel)
.subscribe(
response => this.handleLoginCallback(response),
error => {
this.errorModalService.config = {
height: "210px",
width: "200px",
position: {top: "0", left: "0"}
};
this.errorModalService.show(
"LOGIN ERROR",
"Incorrect username or password. Please try again."
);
});
}
}
最佳答案
似乎 material2 主题 css 也包含一些功能性 css,没有这个覆盖就不能正常工作。 Material 2 getting started guide提到主题是必需的。但是很容易错过这一点。
尝试在 styles.css 中导入一些 Material 主题
@import '~@angular/material/core/theming/prebuilt/deeppurple-amber.css';
或
@import "node_modules/@angular/material/core/theming/prebuilt/deeppurple-amber.css";
实际路径可能不同。
关于angular2 MdDialog 没有显示为弹出窗口,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41941481/
this.$mdDialog.show({ controllerAs: 'ctrl', resolve: { product: product }, c
我要关闭$mdDialog成功 promise 返回后。 我可以像下面的代码一样关闭 $mdDialog 但它不能满足我的这个目的 vm.$mdDialog.show({ controller
在关闭 $mdDialog 后,我试图通过使用他的点击事件来调用文件输入时遇到了一个奇怪的行为。 当我在不使用 $mdDialog 的情况下调用点击事件时,一切正常,但与对话框一起使用时,上传文件选择
我正在尝试将表单输入传递到我的对话框(例如作为标题)。问题是:它没有得到 $scope 的形式。 如果我设置 $scope sinde Controller ,它将正常显示(例如,参见 $scope.
我正在尝试将 Ng-repeat 传递给我的 $mdDialog 但没有找到太多有关如何执行此操作的文档。我一直指的是This Stack ,但我没有运气将图像传递给模态。 在控制台中我收到一条错误消
我目前正在尝试在我的一个单元测试中打开和关闭 Angular Material 2 对话框。打开看起来不错,但我监视了一个应该在关闭后调用的函数,但它从未被调用过,我认为这是因为对话框没有按我希望的那
所以我尝试使用 MdDialog 来显示错误消息。不幸的是,它不是以弹出窗口的形式出现,而是以页面底部的 block 形式出现。 我需要查看或更改什么才能使其正常工作? 下面的代码 common-mo
主列表页面有编辑按钮。这会打开已编辑行的详细信息。 Way-1:现在,如果我设置“ctrl.parent.q_details.client_location”,它会与父列表 Controller 绑定
我在应用程序中使用$ mdDialog,但想将其用作“确认”对话框而不是普通对话框。这意味着,在用户单击“确认”对话框中的两个按钮之一之前,不应继续执行代码流。我注意到可以使用$ mdDialog.c
我想在 mdDiaglog 的 .textcontent 中添加换行符。 以下是我的代码: var confirm = $mdDialog.confirm() .title('Refr
我使用完美运行的“locals”属性向我的 md-Dialog 发送了一些信息。 用户按下按钮后,他将通过 $resource 方法发送一些信息并获得响应。我需要在 md 对话框关闭后显示该响应。 如
如何在 $mdDialog 中添加表单以及提交时如何发送到电子邮件。我试图从对话框中获取信息,但找不到任何线索。 我的 Controller 是: App.controller('MainContro
通常,您可能会显示一个带有 Angular Material 的对话框,如下所示: $mdDialog.show({ controller: FooCtrl, templateUrl:
你好,我正在尝试将一个简单的 md 对话框外部区域的颜色从深色透明颜色更改为不同的颜色,它可以更暗或更亮,这可能吗?感谢您的帮助! 代码来自 https://material.angularjs.or
我正在尝试使用 $mdDialog 将值从 Controller 传递到服务。 var id 有值,但是当我转到 testService 时,该值不存在。 module.controller('vie
我使用模态选项卡,我有通知弹出窗口,当用户登录我的应用程序时,它总是显示给用户。它包含用户离线时发生的所有事件。问题是当我单击列表中的任何对象时,它会关闭我的弹出窗口并显示新的模式选项卡。 我想实现这
我目前有一个 $mdDialog,当它打开时是整页并且其中有一个表单。当用户单击取消时,$mdDialog 将通过调用此函数关闭 $mdDialog.cancel(); 但是,我还想在用户单击浏览器后
我想向我的 mdDialog 添加一个变量或函数。我不确定如何创建自定义 mdDialog,我是 angularjs 的新手。 这是我的 mdDialog: vm.dialog_up = functi
我有一个带有登录页面的 Angular 应用程序,该页面应该在处理请求时显示加载对话框。如果后端登录成功,就没有问题,我会被转到内容页面。不幸的是,如果登录失败,加载对话框永远不会隐藏。 这是我的代码
有没有办法让两个 mdDialog 框一个在另一个上面打开,或者一个来自在 Angular Material 设计实现中另一个内部触发的事件?我正在实现的当前场景是一个 mdDialog 在单击时打开
我是一名优秀的程序员,十分优秀!