如何使用 ajax 的 get 方法仅将 html 代码的文本部分"(不包括标签)"传递给 php



我想通过ajax将mysql数据导出到excel文件中

阿贾克斯代码

$('#dateBox').change(function(){
$('#getData').html('loading...');
var date = $('#dateBox').val();
var limit = $('#sortByNo').val();
//set download button attributes
$('#exportSilver').attr('data-date',date);
if(date != ''){
var action = 'getDataFromDate';
$.ajax({
url: 'fetch_payouts.php',
method: 'post',
data: {date:date,action:action,limit:limit},
success:function(data){
$('#getData').html(data);
window.location.href = 'download.php?data='+data+'';
}
});
}
else{
$('#getData').html('');
}
});

下载.php文件

<?php
if(isset($_GET['data'])){
$data = $_GET['data'];
// The function header by sending raw excel
header("Content-type: application/vnd-ms-excel");
// Defines the name of the export file "codelution-export.xls"
header("Content-Disposition: attachment; filename=insway.xls");
echo $data;
}
?>

它可以工作,但问题是它还将html标签导出到excel文件,并且数据库表中有两行,并且仅从第二行导出一行和两列

这是 excel 文件输出

你可以从数组中删除所有标签 $_GET['data']

尝试以下代码:

$data = array_map(function($v){
return trim(strip_tags($v));
}, $_GET['data']);

或者干脆

$data = array_map( 'strip_tags', $_GET['data'] );

您可以在回显数据之前对数据使用 PHP strip_tags函数。

也许是这样的: $data = array_map(trim(strip_tags($data((

所以新代码看起来像:

<?php
if(isset($_GET['data'])){
$data = $_GET['data'];
// The function header by sending raw excel
header("Content-type: application/vnd-ms-excel");
// Defines the name of the export file "codelution-export.xls"
header("Content-Disposition: attachment; filename=insway.xls");
$data = array_map(trim(strip_tags($data));
echo $data;
}
?>

最新更新