iFrame的pdf内容在Chrome和Opera中被加载两次

我有一个模态体内的iframe。 每次打开模式并查看Chrome或Opera的inspect元素中的Network选项卡时,我都会看到PDF文件会加载两次:第一次是OK,第二次是Cancel(屏幕截图:console_screenshot.png,我们使用的是Durandal框架) 。 它发生在Chrome和Opera中,而不是Safari或Firefox。

下面的HTML代码:

<div class="modal fade" id="myModal">
  <div class="modal-dialog">
      <div class="modal-content">
        <div class="modal-header">
          <button type="button" class="close" data-dismiss="modal" aria-hidden="true">&times;</button>
        </div>
        <div class="modal-body">
             <iframe src="pdf/helloworld.pdf" width="100%"></iframe>   
        </div>
      </div>
    </div>
</div>

我只能假设这是浏览器的问题? 我一直在寻找,尝试不同的东西,但似乎没有解决这个问题。 任何人都有过这个? 或任何建议摆脱双重加载?

链接地址: http://www.djcxy.com/p/36433.html

上一篇: iFrame's pdf content gets loaded twice in Chrome and Opera

下一篇: Downloading a PDF from an HTTP POST call