Marionette.js - 从itemView访问行为函数

时间:2016-04-27 23:51:25

标签: javascript backbone.js marionette

起初我有Marionette.js itemView,里面有很多功能。所以,我想将其中一些移至行为。但我遇到了大问题 - 我无法直接使用itemView中的行为函数。这是我的初始代码:

var NodeView = Marionette.ItemView.extend({
    showDefault: function(){
        /* some code */
        this.showOther();
    },
    // Initiates
    showOther: function(){
        /* some code */    
    }
});

你看,我在其他地方触发了一个节点方法。在行为中移动一个函数后我需要做同样的事情

var NodeView = Marionette.ItemView.extend({
    behaviors: {
        NodeBehavior: {
            behaviorClass: NodeBehavior
        }
    },
    showDefault: function(){
        /* some code */
        this.showOther(); /* how can i trigger this function ? */
    }        
});

var NodeBehavior = Marionette.Behavior.extend({
    showOther : function(){
        /* some code */    
    }    
});

2 个答案:

答案 0 :(得分:2)

从您的视图中,您可以使用triggerMethod

手动调用行为中的方法

例如,这是一个附加了Modal行为的模拟视图。假设在初始化时我们想在模态行为上调用onSayWho方法。以下代码演示了如何执行此操作:

define([
    'marionette',
    'behaviors/Modal',
    'tpl!templates/tpl.html'
], function(
    Mn,
    Modal,
    tpl
) {
  var view = Mn.LayoutView.extend({
    template: tpl,

    behaviors: {
        Modal: {
            behaviorClass: Modal
        }
    },

    initialize: function(options) {
        var data = 'Mike Jones!';
        this.triggerMethod('sayWho', data);
    },
});

return view;
});

这里是Modal行为代码:

define([
    'marionette'
], function (
    Mn
) {
   var Modal = Mn.Behavior.extend({
     onSayWho: function(name) {
         console.log('who? ' + name);
     }
});

return Modal;
});

请务必注意,行为的函数名称需要前面有on。 IE视图调用this.triggerMethod('sayWho', data),而行为中的实际函数名称为onSayWho

答案 1 :(得分:0)

NodeViewNodeBehavior是否在同一个文件中定义?

您需要在NodeView上方定义NodeBehavior:

var NodeBehavior = Marionette.Behavior.extend({
    showOther : function(){
        /* some code */    
    }    
});

var NodeView = Marionette.ItemView.extend({
    behaviors: {
        NodeBehavior: {
            behaviorClass: NodeBehavior
        }
    },
    showDefault: function(){
        /* some code */
        this.showOther(); /* how can i trigger this function ? */
    }        
});

否则,在设置behaviorClass: NodeBehavior时未定义NodeBehavior