我收到错误Cannot read property 'toArrays' of undefined
,找不到解决方法来解决问题。
<head>
<?php wp_head(); ?>
<?php
$external_scripts = get_field('external_scripts_header', 'option');
if (!empty($external_scripts)) {
echo $external_scripts;
}
?>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-csv/0.8.8/jquery.csv.min.js"></script>
</head>
var data;
$.ajax({
type: "GET",
url: "<?php echo $tab['failas']; ?>",
dataType: "text",
success: function(response)
{
data = $.csv.toArrays(response);
generateHtmlTable(data);
}
});
我在头文件中包含了jQuery-csv.js。我得到csv文件后,我只是将其显示为div。