开发者问题收集

未捕获的类型错误:无法读取 null 的属性“length”-Chart.js

2018-08-22
7269
function createChart(elementID, chartLabels, chartData) {
        var ctx = document.getElementById('"' + elementID + '"');
        var myChart = new Chart(ctx, {
            type: 'bar',
            data: {
                labels: chartLabels,
                datasets: [{
                    label: '',
                    data: chartData,
                    borderWidth: 1
                }]
            },
            options: {
                scales: {
                    yAxes: [{
                        ticks: {
                            beginAtZero: true
                        }
                    }]
                }
            }
        });
    }

    $(document).ready(function () {
        $.ajax({
            type: 'GET',
            url: '/my-progress/charts-data-load/',
            success: function (data) {
                $.each(data.data, function (k, v) {
                    let sections = [];
                    let section_total = [];
                    let section_correct = [];
                    let chart_id = v.chart_id;
                    let course = v.course;
                    let chart_data = v.chart_data;
                    $.each(chart_data, function (i, j) {
                        sections.push(j.section);
                        section_total.push(j.section_total);
                        section_correct.push(j.section_correct);
                    });
                    let chart_identifier = 'chart-'+chart_id;
                    $('.charts-wrapper').append(
                        '<div class="col-6">\n' +
                        '    <canvas id="'+chart_identifier+'" width="400" height="400"></canvas>\n' +
                        '</div>'
                    );
                    console.log(sections);
                    console.log(section_total);
                    console.log(section_correct);
                    console.log(chart_identifier);
                    createChart(chart_identifier, sections, section_correct);
                });
            }
        });
    });

屏幕错误 error

数据来自后端,我想使用 Chart.js 根据这些数据构建图表。在日志中,您可以看到数据已进入。Dalle 我为时间表绘制了画布。数据被发送到绘制图形的函数。

2个回答

var ctx = document.getElementById(elementID) 而不是 var ctx = document.getElementById('"' + elementID + '"')

diouze
2018-08-22

如果您不想使用“lable”或数据集配置的任何其他属性,也许您可​​以尝试以下代码

var myBarChart = new Chart(ctx, {
    type: 'bar',
    data: data,
    options: options
});
Manish
2018-08-22