这是我的HTML <a href="http://example/file/test.docx"></a>
当我在网页上点击此内容 Android 可以打开浏览器进行下载,但iOS只需在.web中打开此*.docx
文件
我无法在iOS下载。
这是我nginx
server {
listen 80;
server_name www.example.cc;
location ~^/(js|css|img|fonts|file)/{
access_log off;
root /home/user/public;
expires 2h;
}
location / {
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header Host $http_host;
proxy_pass http://127.0.0.1:3001;
}
}
如何在iOS中下载文件。请帮忙!
答案 0 :(得分:0)
iphone无法下载.doc
等文件编辑:您可以尝试在Safari中打开该页面,然后按分享以保存在Dropbox中。
答案 1 :(得分:0)
您可以在safari中打开它并将其保存在iCloud Drive中,或者在WeChat / BaiDu SkyDrive等其他软件中打开。