如何将下载 link 添加到 html,其中 href 是在线托管的 .mp4?
How to add download link to html, where href is a .mp4 that is hosted online?
我想允许用户下载托管在 Cloudinary 上的 .mp4 文件。我目前有这个:
<a
target="__blank"
href='https://res.cloudinary.com/dental-
intelligence/video/upload/v1576364994/ippevbecmsljhzkfklyi.mp4'
download
>
Download
</a>
但它所做的只是打开 url 并开始播放视频。有没有办法在用户按下下载后直接将其下载到用户的计算机上?
您需要删除目标属性并在 Cloudinary (fl_attachment
) 中使用 attachment
标志。
<a href='https://res.cloudinary.com/dental-intelligence/video/upload/fl_attachment/ippevbecmsljhzkfklyi.mp4'>Download</a>
我想允许用户下载托管在 Cloudinary 上的 .mp4 文件。我目前有这个:
<a
target="__blank"
href='https://res.cloudinary.com/dental-
intelligence/video/upload/v1576364994/ippevbecmsljhzkfklyi.mp4'
download
>
Download
</a>
但它所做的只是打开 url 并开始播放视频。有没有办法在用户按下下载后直接将其下载到用户的计算机上?
您需要删除目标属性并在 Cloudinary (fl_attachment
) 中使用 attachment
标志。
<a href='https://res.cloudinary.com/dental-intelligence/video/upload/fl_attachment/ippevbecmsljhzkfklyi.mp4'>Download</a>