我正在尝试使用 flot 来绘制一些从 MySQL 数据库中提取的数据。我正在记录用户登录访问,并且我有一个 SQL 函数,它将检索给定月份每天的访问次数 getStats($day)。我已经在网上阅读了一些如何正确执行此操作的示例,但由于某种原因,当我尝试在我的 javascript 文件中绘制数组数据时,它出现空 --> 'data:'。下面是我的代码。我正在使用 CI 框架,所以如果对我的代码有一些疑问,很可能是因为这个。我有硬编码的数据,它工作正常。在此问题上的任何帮助将不胜感激,目前在数据库中使用 flot 的情况并不多。
模型--->metrics.php
function showUsers() {
//get the number of days in the current month and the first day
$num_days = cal_days_in_month(CAL_GREGORIAN, date(m), date(Y));
$first_day = strtotime(date('Y').'-'.date('m').'-01');
//iterate through all of the days
while( $i < $num_days ) {
//get the user visits for each day of the month
$log = $this->db->getStats($first_day);
//add +1 day to the current day
$first_day += 86400;
$flot_visits[] = '['.($first_day*1000).','.$log->fields['total'].']';
$i++;
}
//format in acceptable format for flot
$content['visits'] = '['.implode(',',$flot_visits).']';
//load the view and pass the array
$this->load->vars($content);
$this->load->view('metrics/user_metrics', $content);
}
查看---> user_metrics.php
<div id ="visits_graph" style="width:600px; height:300px"></div>
Javascript ---> user_metrics.js
function metrics() {
$.ajax({
type: "POST",
url: pathurl + "metrics/showUsers",
data: "",
success: function(data) {
graph_visits();
}
});
}
function graph_visits() {
$.plot($('#visits_graph'), [
{ label: 'Visits', data: <?php echo $visits ?> }
], {
xaxis: {
mode: "time",
timeformat: "%m/%d/%y"
},
lines: { show: true },
points: { show: true },
grid: { backgroundColor: #fffaff' }
});
}