EmberJS动作 - 当包含在`actions`中时,从另一个动作调用一个动作

时间:2013-09-11 14:20:58

标签: javascript ember.js publish-subscribe ember-controllers

如果在EmberJS控制器中actions中包含其他操作,您如何调用其中一个操作?

使用现已弃用的方式定义操作的原始代码:

//app.js
App.IndexController = Ember.ArrayController.extend({
    // properties
    /* ... */

    // actions
    actionFoo: function() {
        /* ... */
        this.actionBar();
    },
    actionBar: function() {
        /* ... */
    }
});

//app.html
<div class="foo" {{action actionFoo this}}>
<div class="bar" {{action actionBar this}}>

但是,使用EmberJS 1.0.0,我们会收到弃用警告,说必须将操作放在控制器内的操作对象中,而不是直接放在控制器中,如上所述。

根据建议更新代码:

//app.js
App.IndexController = Ember.ArrayController.extend({
    // properties
    /* ... */

    // actions
    actions: {
        actionFoo: function() {
            /* ... */
            this.actionBar(); //this.actionBar is undefined
            // this.actions.actionBar(); //this.actions is undefined
        },
        actionBar: function() {
            /* ... */
        }
    }
});

//app.html
<div class="foo" {{action actionFoo this}}>
<div class="bar" {{action actionBar this}}>

但是,我发现动作中定义的一个函数不可能调用另一个函数,因为this对象似乎不再是控制器。

我该怎么做呢?

1 个答案:

答案 0 :(得分:100)

您可以使用send(actionName, arguments)方法。

App.IndexController = Ember.ArrayController.extend({
    actions: {
        actionFoo: function() {
            alert('foo');
            this.send('actionBar');
        },
        actionBar: function() {
            alert('bar');
        }
    }
});

以下是此示例http://jsfiddle.net/marciojunior/pxz4y/

的jsfiddle