使用模态弹出角度js不起作用

问题描述 投票:0回答:1

我正在构建一个基本的角度应用程序,我需要一个按钮,点击它应该打开一个弹出窗口并显示图表。

这是我的按钮,它应该呈现弹出窗口。

<div style="padding-top:50px;padding-left:10px;">
<button type="button" class="btn btn-primary btn-sm" data-toggle="modal" data-target="#myModal" >
Diagnose
</button>
</div>

这是我的弹出窗口代码

<div class="modal fade" id="myModal" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel" aria-hidden="true" style="width:1140px;height:601px;left:70px;top:80px;border-radius:0px;">
<div class="modal-dialog" role="document" style="width:1140px;height:601px;margin:0px;border-radius:0px;">
<div class="modal-content" style="border-radius:0px;">
<div class="modal-header" style="padding: 18px 30px 18px 30px;">
<p class="modal-title" id="exampleModalLabel" style="font-size:24px;color:#434343;float:left;">Correlation Plot</p>
<button type="button" class="close" data-dismiss="modal" aria-label="Close" style="float:right;">
<span aria-hidden="true">&times;</span>
</button>
</div>
<div class="modal-body" style="width:1140px;height:523px;overflow-y:auto;">
<div class="corrBox">

<span><p class="cardText">Top 4 correlated features with Parent Satisfaction</p></span>
</div>
<div class="corrInfoBox" >
<canvas baseChart height="80px"
[datasets]="corr_barChartData"
[labels]="['']"
[options]="corr_barChartOptions"
[legend]=true
[chartType]="corr_barChartType"></canvas>
</div>
</div>
</div>
</div>
</div>

问题是,即使单击“诊断”按钮,图表也会显示在屏幕上,单击“诊断”按钮时没有任何反应。

Screen shot of my application

如何链接我点击诊断按钮以在弹出窗口中显示条形图?

angular bootstrap-modal
1个回答
1
投票

按钮和弹出窗口都是同一父组件的一部分。所以假设您有以下内容:

  • 当前页面组件 按键 弹出

您的代码将被设计为currentPage.component.html

<button [etc] (onClick)="openPopup()">Button Text</button>

currentPage.component.ts

public openPopup() {
     // your logic goes here
}

请记住,您需要在当前页面的模块中添加弹出组件的模块。

如果您的问题和代码结构更清晰,可以提供更多信息。

© www.soinside.com 2019 - 2024. All rights reserved.