web-dev-qa-db-fra.com

Déclencher une action sur l'événement de modification avec l'aide à la saisie de la case à cocher Ember.js?

Comment puis-je déclencher une action nommée en modifiant une case à cocher dans Ember.js? Toute aide sera fortement appréciée.

Voici ce que j'ai. Cochez ou décochez la case n'a aucun effet.

Modèle:

{{input type="checkbox" on="change" action="applyFilter"}}

Manette:

actions: {
    applyFilter: function() {
        console.log("applyFilter");
    }
}
37
Corey Quillen

utiliser un observateur semble être le moyen le plus simple de regarder un changement de case à cocher

Modèle

{{input type='checkbox' checked=foo}}

Code

  foo:undefined,
  watchFoo: function(){
    console.log('foo changed');
  }.observes('foo')

Exemple

http://emberjs.jsbin.com/kiyevomo/1/edit

Ou vous pouvez créer votre propre implémentation de la case à cocher qui envoie une action

Case à cocher personnalisée

App.CoolCheck = Ember.Checkbox.extend({
  hookup: function(){
    var action = this.get('action');
    if(action){
      this.on('change', this, this.sendHookup);
    }
  }.on('init'),
  sendHookup: function(ev){
    var action = this.get('action'),
        controller = this.get('controller');
     controller.send(action,  this.$().prop('checked'));
  },
  cleanup: function(){
    this.off('change', this, this.sendHookup);
  }.on('willDestroyElement')
});

Vue personnalisée

{{view App.CoolCheck action='cow' checked=foo}}

Exemple

http://emberjs.jsbin.com/kiyevomo/6/edit

24
Kingpin2k

Je voudrais publier une mise à jour à ce sujet. Dans Ember 1.13.3+, vous pouvez utiliser ce qui suit:

<input type="checkbox" 
       checked={{isChecked}} 
       onclick={{action "foo" value="target.checked"}} />

lien vers la source

63
Kori John Roys

Poster Ember version> = 1.13 voir réponse de Kori John Roys .

C'est pour Ember versions avant 1.13


Il s'agit d'un bogue dans l'assistant {{input type=checkbox}} D'ember.

voir https://github.com/emberjs/ember.js/issues/54

J'aime l'idée d'avoir un remplaçant. La solution de @ Kingpin2k fonctionne, mais l'accès aux vues dans le monde est obsolète et l'utilisation d'observateurs n'est pas géniale.

Dans le github lié ember issue, rwjblue suggère une version de composant:

App.BetterCheckboxComponent = Ember.Component.extend({
  attributeBindings: ['type', 'value', 'checked', 'disabled'],
  tagName: 'input',
  type: 'checkbox',
  checked: false,
  disabled: false,

  _updateElementValue: function() {
    this.set('checked', this.$().prop('checked'));
  }.on('didInsertElement'),

  change: function(event){
    this._updateElementValue();
    this.sendAction('action', this.get('value'), this.get('checked'));
  },
});

Exemple d'utilisation dans un modèle ("coché" et "désactivé" sont facultatifs):

{{better-checkbox name=model.name checked=model.checked  value=model.value disabled=model.disabled}}
12
hewsonism

Pour ceux qui utilisent Ember> 2.x:

{{input
  change=(action 'doSomething')
  type='checkbox'}}

et l'action:

actions: {
  doSomething() {
    console.warn('Done it!');
  }
}
4
Rimian