Mixin

Ember.Mixin Class

PUBLIC

Defined in: packages/ember-metal/lib/mixin.js:415

Module: ember-metal

The Ember.Mixin class allows you to create mixins, whose properties can be added to other classes. For instance,

const EditableMixin = Ember.Mixin.create({
  edit() {
    console.log('starting to edit');
    this.set('isEditing', true);
  },
  isEditing: false
});

// Mix mixins into classes by passing them as the first arguments to
// `.extend.`
const Comment = Ember.Object.extend(EditableMixin, {
  post: null
});

let comment = Comment.create({ 
  post: somePost 
});

comment.edit(); // outputs 'starting to edit'

Note that Mixins are created with Ember.Mixin.create, not Ember.Mixin.extend.

Note that mixins extend a constructor's prototype so arrays and object literals defined as properties will be shared amongst objects that implement the mixin. If you want to define a property in a mixin that is not shared, you can define it either as a computed property or have it be created on initialization of the object.

// filters array will be shared amongst any object implementing mixin
const FilterableMixin = Ember.Mixin.create({
  filters: Ember.A()
});

// filters will be a separate array for every object implementing the mixin
const FilterableMixin = Ember.Mixin.create({
  filters: Ember.computed(function() {
    return Ember.A();
  })
});

// filters will be created as a separate array during the object's initialization
const Filterable = Ember.Mixin.create({
  init() {
    this._super(...arguments);
    this.set("filters", Ember.A());
  }
});

apply (obj) private

Defined in packages/ember-metal/lib/mixin.js:591

Parameters:

obj

Returns:

applied object

create (arguments) publicstatic

Defined in packages/ember-metal/lib/mixin.js:509

Parameters:

arguments

detect (obj) Booleanprivate

Defined in packages/ember-metal/lib/mixin.js:622

Parameters:

obj

Returns:

Boolean

reopen (arguments) private

Defined in packages/ember-metal/lib/mixin.js:554

Parameters:

arguments

© 2017 Yehuda Katz, Tom Dale and Ember.js contributors
Licensed under the MIT License.
https://emberjs.com/api/classes/Ember.Mixin.html

在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号

意见反馈
返回顶部