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 一直显示正在等待HID—ISP
  • ¥15 Python turtle 画图
  • ¥15 关于大棚监测的pcb板设计
  • ¥15 stm32开发clion时遇到的编译问题
  • ¥15 lna设计 源简并电感型共源放大器
  • ¥15 如何用Labview在myRIO上做LCD显示?(语言-开发语言)
  • ¥15 Vue3地图和异步函数使用
  • ¥15 C++ yoloV5改写遇到的问题
  • ¥20 win11修改中文用户名路径
  • ¥15 win2012磁盘空间不足,c盘正常,d盘无法写入