Dropbox Chooser API

时间:2013-08-04 00:09:19

标签: dropbox-api

我已经按照整个Dropbox选择器文档,并在页面中实现了代码,但我不能为我的生活弄清楚如何使文件在被选中后自动下载,我找不到任何正常工作的Javascript这样做的功能。

<script type="text/javascript">
    // add an event listener to a Chooser button
    document.getElementById("db-chooser").addEventListener("DbxChooserSuccess",
        function(e) {
            alert("Here's the chosen file: " + e.files[0].link)
        }, false);
</script>

1 个答案:

答案 0 :(得分:0)

window.location = e.files[0].link怎么样?

但让用户在他/她自己的Dropbox中选择一个文件然后下载该文件似乎很奇怪。我很好奇你为什么要这样做。