【问题标题】:Why won't the html5 download work in my Meteor project?为什么 html5 下载在我的 Meteor 项目中不起作用?
【发布时间】:2016-08-30 14:39:55
【问题描述】:

我只是想通过点击链接下载文件,如此处http://www.w3schools.com/tags/tryit.asp?filename=tryhtml5_a_download 或此处所示:

<a href="/images/myw3schoolsimage.jpg" download>
  <img border="0" src="/images/myw3schoolsimage.jpg" alt="W3Schools" width="104" height="142">
</a>

但它不适用于我的 Meteor 项目。我被重定向了,但没有下载。这有效:

Template.series72.onRendered(function(){
$('.download').attr({target: '_blank', 
                    href  : '../pdfs/sizing-diagram-series-72.pdf'});
});

但我很感兴趣为什么前者不会。谢谢你。

【问题讨论】:

    标签: html meteor download iron-router


    【解决方案1】:

    我个人没有使用 Meteor 的经验,所以我可能会遗漏一些东西,但在我看来,您似乎忘记在 onRendered 函数中添加 download 属性。试试:

    Template.series72.onRendered(function(){
       $('.download').attr({
            download: '',
            target: '_blank', 
            href  : '../pdfs/sizing-diagram-series-72.pdf'
       });
    });
    

    【讨论】:

      猜你喜欢
      • 2018-05-28
      • 1970-01-01
      • 2016-04-10
      • 2020-12-27
      • 2021-05-23
      • 1970-01-01
      • 2023-03-31
      • 2021-04-04
      • 1970-01-01
      相关资源
      最近更新 更多