# downloadSingleFile

下载文件

# 请求参数

Prop Type Required Default Description
download_url String Y - 下载文件URL地址

# 参数代码示例

// 下载文件
this.$bridge.downloadSingleFile({
    download_url: 'http://example.com/file.pdf'
}).then(res => {
    console.log(res)
})
1
2
3
4
5
6