如何在Ionic中从iframe下载PDF

时间:2019-11-01 07:03:13

标签: ionic-framework iframe webview ionic3

在离子视图中,我包括一个加载我的前端网站的iframe,在该iframe中,我有一个按钮可以下载由.Net后端生成的PDF文件。

直接从前端,即使我在控制台中有这种日志,我也没有问题可以下载该文件:

<form [formGroup]="myForm" (ngSubmit)="onSubmit(myForm)">
    What is your name ? <input formControlName="name" placeholder="Your name"><br>
    What is your email? <input formControlName="email" placeholder="Your email"><br>
    What is your message? <input formControlName="message" placeholder="Your message"><br>
    <p>
       Questions: {{ myForm.get('questions').value[currentQuestionIndex] }}
    </p>

  <button type="button" (click)="currentQuestionIndex = currentQuestionIndex - 1">Previous</button>
   &nbsp;
  <button type="button" (click)="currentQuestionIndex = currentQuestionIndex + 1">Next</button>    
</form>

但是在我的Ionic应用程序中,当我单击iframe中的那个按钮时,我拥有相同的日志,但是无法下载PDF。

我想念什么吗?

0 个答案:

没有答案