Morris Js和Codeigniter从控制器传递数据 [英] Morris Js and Codeigniter pass data from a controller

查看:311
本文介绍了Morris Js和Codeigniter从控制器传递数据的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有以下控制器从我的DBase选择数据:

I have the following controller which picks data from my DBase :

function chart_js(){

function chart_js() {

    $rows = '';
    $query = "SELECT clnt_id,date_added FROM job_card ORDER BY date_added DESC LIMIT 0, 5";
    $result = $this->db->query($query);
    $total_rows = $result->num_rows;
    if ($result) {
        $rows = $result->result_array();
    }
    print json_encode($rows, JSON_NUMERIC_CHECK);

}

并以以下格式将其传递给json_encode:

And passes it to json_encode in the following format :

[{"clnt_id": 10, "date_added": "2015-11-02 12:28:01"}, {"clnt_id": 11, "date_added": "2015-11-01 07:06:56"} , {"clnt_id": 9, "date_added": "2015-10-30 22:14:48"}, {"clnt_id": 7, "date_added": "2015-10-30 06:15:55"}, {"clnt_id": 10, "date_added": "2015-10-30 06:03:50"}]

上面的数据是如何返回数据的确切格式。
我使用上面的数据绘制一个静态线图,它工作得很好。以下是我的观点:

The data above is the exact format of how the data is returned. I have used the above data to plot a static line graph and it worked very well. Below is my view :

<body class="nav-md">
        <div class="panel panel-default">
            <div class="panel-heading">
                <i class="fa fa-bar-chart-o fa-fw"></i> Account Registrations Past 7 days
            </div>
            <!-- /.panel-heading -->
            <div class="panel-body">
                <div id="acctregs" style="height: 300px;"></div>
            </div>
            <!-- /.panel-body -->
        </div>



        <link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/morris.js/0.5.1/morris.css">
        <script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
        <script src="//cdnjs.cloudflare.com/ajax/libs/raphael/2.1.0/raphael-min.js"></script>
        <script src="//cdnjs.cloudflare.com/ajax/libs/morris.js/0.5.1/morris.min.js"></script>


        <script>
            $(document).ready(function () {
                var acct_regs = [{"clnt_id": 10, "date_added": "2015-11-02 12:28:01"}, {"clnt_id": 11, "date_added": "2015-11-01 07:06:56"}
                    , {"clnt_id": 9, "date_added": "2015-10-30 22:14:48"}, {"clnt_id": 7, "date_added": "2015-10-30 06:15:55"}, {"clnt_id"
                                : 10, "date_added": "2015-10-30 06:03:50"}];
                var acctregs = new Morris.Line({
                    // ID of the element in which to draw the chart.
                    element: 'acctregs',
                    // Chart data records -- each entry in this array corresponds to a point on
                    // the chart.
                    data: acct_regs,
                    // The name of the data record attribute that contains x-values.
                    xkey: 'date_added',
                    // A list of names of data record attributes that contain y-values.
                    ykeys: ['clnt_id'],
                    // Labels for the ykeys -- will be displayed when you hover over the
                    // chart.
                    labels: ['Value'],
                    dateFormat: function (x) {
                        return new Date(x).toString().split("00:00:00")[0];
                    }
                });
            });

        </script>

</body>


$ b to:

However when I try to retrieve this data from the controller which interacts with the Dbase by replacing the var acct_regs to :

var acct_regs = "<?php echo site_url('operations/char_js'); ?>";

我收到以下错误:

TypeError: a is undefined
    ...,h,i,j,k,l;return"number"==typeof a?a:(c=a.match(/^(\d+) Q(\d)$/),e=a.match(/^(\...

来自morris.min.js。
什么是将这些数据从控制器传递到视图的最好方法,以便它可以显示动态图?

from morris.min.js. What is the best way to pass this data from controller to view so that it can display dynamic graphs?

推荐答案

您需要ajax数据使用 $。getJSON

You need to ajax the data use $.getJSON

尝试:

$.getJSON("<?php echo site_url('operations/char_js'); ?>", function (json) { 
            var acctregs = new Morris.Line({
                        // ID of the element in which to draw the chart.
                        element: 'acctregs',
                        // Chart data records -- each entry in this array corresponds to a point on
                        // the chart.
                        data: json,
                        // The name of the data record attribute that contains x-values.
                        xkey: 'date_added',
                        // A list of names of data record attributes that contain y-values.
                        ykeys: ['clnt_id'],
                        // Labels for the ykeys -- will be displayed when you hover over the
                        // chart.
                        labels: ['Value'],
                        dateFormat: function (x) {
                            return new Date(x).toString().split("00:00:00")[0];
                        }
                    });
        });

这篇关于Morris Js和Codeigniter从控制器传递数据的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆