dream12001 2017-06-17 21:23
浏览 55
已采纳

laravel:将对象传递给d3.cal-heatmap

I want to build a data variable containing the number of occurrences of unix datetime values.

i.e.

{1489140000.0: 2, 1487239200.0: 1, 1483524000.0: 2, 1486634400.0: 1, 1490086800.0: 3 }

My error is that on the view I'm getting laravel use of undefined constant datas - assumed 'datas'

public function showStatistics()
{
    $job_post_date = Emploi::where('language', 'EN')->pluck('POSTDATE');
    $unix_time = array();

    for ($i=0; $i < count($job_post_date) ; $i++) { 
        $unix_time[$i] = strtotime($job_post_date[$i]);
    }

    $datas = array_count_values($unix_time);
    $datas = json_encode($datas);

    return view('emploi.stats', ['datas' => $datas]);
}

excerpt of a javascript part in the stats.blade.php

....
var cal = new CalHeatMap();
cal.init({
    itemSelector: "#example-d",
    domain: "month",
  itemName: ["job", "jobs"],
    data:  {!! datas !!},
    start: thisMonth.SubtractMonth(5),
    cellSize: 12,
    cellPadding: 5,
    ....

I'm getting an error in the template on: {{ datas }}

  • 写回答

1条回答 默认 最新

  • dongluyi5123 2017-06-17 21:26
    关注

    Use

    data:  {!! $datas !!}
    

    instead of

    data:  {!! datas !!}
    

    You missed the dollar sign, which makes PHP assume it's a constant (which you don't declare).

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 DIFY API Endpoint 问题。
  • ¥20 sub地址DHCP问题
  • ¥15 delta降尺度计算的一些细节,有偿
  • ¥15 Arduino红外遥控代码有问题
  • ¥15 数值计算离散正交多项式
  • ¥30 数值计算均差系数编程
  • ¥15 redis-full-check比较 两个集群的数据出错
  • ¥15 Matlab编程问题
  • ¥15 训练的多模态特征融合模型准确度很低怎么办
  • ¥15 kylin启动报错log4j类冲突