2

在我的骨干+木偶应用程序中,我使用了 morris.js 折线图。此图表从模型中获取一组数据。并且必须在创建 DOM 之后创建(依赖于 DOM)。

创建图表的代码:

_createChartData: function () {
    var trends = this.model.get("trends"),
        chartData = [];

    $.each(trends, function (x, y) {
        // some actions with data
    });

    return chartData;
},
_createChart: function () {      
    Morris.Line({
        element: 'promo-chart',
        data: this._createChartData(),
        xkey: 'date',
        ykeys: ['y', 'g'],
    });
}

视图和控制器:

define(['utils/hbs', 'modules/model/promo-mdl'], function( Hbs, Promo){
    var PromoView = Marionette.ItemView.extend({
        initialize: function () {
            this._events();
        },

        template: Hbs.tf('modules/promo'),

        templateHelpers: {
            // handlebars helpers
        },

        events: {
            'click #submitBtn'          : '_savePromo',
        },

        _events: function () {
            this.listenTo(this.model, 'change', this.render);
        },

        _savePromo: function () {
            // save data
        }        
    });

    return Marionette.Controller.extend({
        initialize: function (config) {
            this.region = config.region;
            this.model = new Promo({});
            this.model.fetch();
            this._events();
        },

        _events: function () {
            App.vent.on('show:promo', this._show, this);
        },

        _show: function () {
            this.view = new PromoView({ model: this.model });
            this.region.show(this.view);
        }
    });
});

我尝试在 View 中创建此图表,但出现错误 - 空数据或 DOM 中没有图表元素。在哪里创建这个图表,在视图或控制器中?以及使用哪个事件?初始化、onShow 还是 onRender?

4

2 回答 2

1

当它使用的元素不在 DOM 中时,您似乎正在创建图表。onShow尝试在视图的函数中创建图表:

var PromoView = Marionette.ItemView.extend({

    // code...

    onShow: function(){
      // create chart here
    }
});
于 2013-11-01T12:31:58.440 回答
0

视图中的 onDomRefresh 函数可能是您正在寻找的。

于 2013-11-03T11:04:46.740 回答