简体   繁体   中英

Ember “this” undefined in component

I'm trying to make a progress bar that gets updated as more challenges are completed. However, the component cannot access the property because this is undefined.

I have injected a service and I'm trying to create a computed property from a property of the service. However, this is always undefined unless in debugging.

import Ember from 'ember';

export default Ember.Component.extend({
  progress: 0,
  game: Ember.inject.service(),
  events: this.get("game.challenges")
});

How can this be undefined in the above code? How is it not bound to any scope?

I've thrown in a debugger like this:

init() {
  debugger
},

If I log out this.get("game") it returns the expected value.

I've also tried putting in the service inside of the init, still undefined. I've tried logging out this and that is undefined as well.

Is there a way to force the service to resolve before moving on? I have tried using various component hooks but they don't seem to have changed things.

Elaborating on Tom's answer:

In JS, this is kind of a special variable. Its meaning depends on whether it is inside a function or not.

  • Outside a function, it is the global context (in a browser, that's usually the window object).
  • Inside a function, it is the object the function is called on. Eg if you write obj.f() , then this will be obj in f() . If calling the function directly, this remains whatever it currently is.

In your code, the JS engine is currently executing outside a function (it is preparing to call extend , passing it an object).

export default Ember.Component.extend({
  game: Ember.inject.service(),
  events: this.get("game.challenges")
});

Therefore, this in your code refers to the window object. You fix that using a computed property , that is, a function that gets invoked on your object when the property is accessed:

export default Ember.Component.extend({
  game: Ember.inject.service(),
  events: Ember.computed('game.challenges', function() {
    return this.get("game.challenges");
  })
});

You may do whatever computation you need in the function. Just remember than anything the result depends on must be listed inside property() so Ember knows when to recompute it.

Lastly, for some common cases, ember provides some shortcuts , such as Ember.computed.alias , Ember.computed.equal , …

You have to tell Ember that this is a computed property. Computed properties are very well documented in the docs -

http://guides.emberjs.com/v2.0.0/object-model/computed-properties/

If you just want it to be the same value from the service, you could alias it like so:

game: Ember.computed.alias('game.challenges')

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM