打开 mdDialog 时,它向下滚动对话框而不是显示顶部的部分

When opening mdDialog, it scrolls down the dialog instead of showing the part on top

您可以观察此 link 中的行为。当您单击按钮 "Comment" 时,它会打开模式,显示 header / 标题,然后在模式内向下滚动。

  <md-dialog-actions layout="row">
    <md-button class="md-raised md-primary" ng-click="cancel()">Cancel</md-button>
  </md-dialog-actions>

我认为是 md-dialog-actions 标签,因为当我评论它时,模式没有向下滚动,但我不知道如何解决它。

在您的控制器中,您应该在 showDialog 函数中包含 "focuOnOpen: false",如下所示:

showDialogDonation() {
    this.dialog = this.$mdDialog.show({
      focusOnOpen: false,
    });
}