我正在使用以下 php 代码从我的 mysql 数据库中导出:
<?php
require_once('connect.php');
$group = 1;//$_GET['group'];
$export = mysql_query ("SELECT * FROM relationship WHERE group_id = $group");
$fields = mysql_num_fields ( $export );
for ( $i = 0; $i < $fields; $i++ )
{
$header .= mysql_field_name( $export , $i ) . "\t";
}
while( $row = mysql_fetch_row( $export ) )
{
$line = '';
foreach( $row as $value )
{
if ( ( !isset( $value ) ) || ( $value == "" ) )
{
$value = "\t";
}
else
{
$value = str_replace( '"' , '""' , $value );
$value = '"' . $value . '"' . "\t";
}
$line .= $value;
}
$data .= trim( $line ) . "\n";
}
$data = str_replace( "\r" , "" , $data );
if ( $data == "" )
{
$data = "\n(0) Records Found!\n";
}
header("Content-type: application/octet-stream");
header("Content-Disposition: attachment; filename=your_desired_name.xls");
header("Pragma: no-cache");
header("Expires: 0");
print "$header\n$data";
mysql_close($my_connection);
?>
如果我只是运行这个 php 文件,我可以从我的浏览器 (chrome) 下载该文件。
但是,如果我在另一个页面上使用单击按钮并调用下面的 javascript 来运行此 php 文件,下载不会显示:
<script>
function export_data()
{alert(1);
$.ajax({ //create an ajax request to load_page.php
type: "GET",
url: "export.php",
data: {group: localStorage.group_id},
dataType: "html",
success: function(response){
alert(response);
}
});alert(2);
}
</script>
Javascript 会提醒所有 xls 内容,但会阻止下载。
我该如何解决这个问题?
提前致谢!