javascript - 微信公众号里如何实现 点击下载 的功能,服务器端为php
ringa_lee
ringa_lee 2017-04-11 10:45:36
0
1
295
ringa_lee
ringa_lee

ringa_lee

모든 응답(1)
PHPzhong

不需要Ajax 直接<a href='http://example.com/test.doc' download>下载</a>

或者点击链接,php下载

$file  =  'test.doc' ;

if ( file_exists ( $file )) {
     header ( 'Content-Description: File Transfer' );
     header ( 'Content-Type: application/octet-stream' );
     header ( 'Content-Disposition: attachment; filename=' . basename ( $file ));
     header ( 'Content-Transfer-Encoding: binary' );
     header ( 'Expires: 0' );
     header ( 'Cache-Control: must-revalidate' );
     header ( 'Pragma: public' );
     header ( 'Content-Length: '  .  filesize ( $file ));
     ob_clean ();
     flush ();
     readfile ( $file );
    exit;
}
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿