我正在尝试使用chart.js创建折线图,我想从php文件中传递轴(在本例中为标签),这个:
<?php
$new_labels = array('January', 'February', 'March', 'April', 'May', 'June', 'July');
echo json_encode($new_labels);
?>
使用此javascript:
function retrieveLabel(label) {
$.ajax({
url: "sys/class/profilesGraphHandler.php",
type: "GET",
success: function (data) {
label(data);
}
});
}
retrieveLabel(function (output) { new_labels = output, console.log(new_labels) });
控制台向我显示我从php文件中检索到的数组中有7个元素但是标签都没有显示。
var areaChartData = { labels: new_labels , dataset....};
如何将“new_labels”从ajax传递到areaChartData的标签?