When to use getters/setters and when to safely omit them?

前端 未结 1 764
孤城傲影
孤城傲影 2021-01-03 03:51

According to http://emberjs.com/guides/object-model/classes-and-instances/ it is required to access properties using getters and setters:

When accessi

相关标签:
1条回答
  • 2021-01-03 04:09
    1. The definition of a method or a property in Ember is the same as in Vanilla JavaScript, but they are resolved different in Ember. You are not working with POJOs. Every time you extend from a Route/Controller/View, you are adding the Ember layer that processes methods and properties differently.
    2. No, is not always safe. In your case it is because it is overly simple.
    3. Yes, always access properties with get.

    User interaction with your app is what causes changes in the properties of your objects, we handle those interactions with events. When an event in Ember is fired, it is not resolved immediately, instead it is put in a priority queue and resolved at a later time.

    Properties are updated and read in an asynchronous form, if you access them directly using this there is no guarantee that you'll get the most up to date value.

    Check: Managing Asynchrony

    When you make a change to a property in Ember, it does not immediately propagate that change. Instead, it invalidates any dependent properties immediately, but queues the actual change to happen later.

    So, when you change the value of a property, this is roughly what happens:

    1. A property is changed
    2. All dependent properties are invalidated
    3. Queues the actual change for later
    4. Wait for any other event handlers, for the current user, to finish
    5. Flush the changes queue
      • Until here, the property is actually updated (and this would work as usual)

    Imagine you use this to read a property, but some other event occurs that changes its value. The new value won't be available until the queue is flushed, but this reads immediately the property and returns the value of a property that is scheduled to be updated soon. You get stale data. The methods get and set manage this asynchrony for you and guarantee fresh values always.

    When you have only one property, in the whole app, this asynchronous mechanism won't be noticed.

    There are many different queues in Ember, and the fundamental mechanism behind all this is the run loop.

    0 讨论(0)
提交回复
热议问题