Quantcast
Channel: Ember.JS - Latest topics
Viewing all articles
Browse latest Browse all 4826

Unable to access properties through a belongsTo relationship in a template - Promise/Proxy object never resolves

$
0
0

@johnnyicon wrote:

Hi all,

I’ve been struggling to figure out why I can’t access a related model and its properties in a template. The relationship is very simple:

  • User belongsTo Organization
  • Organization hasMany Users

I’m working with a user record, and I’m trying to display the user’s organization’s name via the user record (e.g., user.organization.name). For a little more context, the API call uses the include directive, and the JSON response returns a JSON API Spec compliant response for this call.

Using the console, when I try to access the organization via the user, a Proxy object is returned.

user.organization

returns

Proxy {_belongsToState: BelongsToRelationship, isFulfilled: true, isRejected: false, content: Class, _super: ƒ}

So in order to access the organization’s name, I have to do the following:

user.organization.then((org)=>{console.log(org.name)});

returns

Awesome Co
Promise {_id: 240, _label: undefined, _state: 1, _result: undefined, _subscribers: Array(0)}

This works just fine. It prints out the organization’s name, and then it returns a Promise object.

Side question: is this supposed to happen?

Now, when I try to access the organization’s name in a template (as shown below), nothing is displayed in the template.

{{#if user.organization.isPending }}
  Loading...
{{ else }}
  {{ user.organization.name }}
{{/if}}

Not too sure what I did wrong.

Any ideas?

Posts: 1

Participants: 1

Read full topic


Viewing all articles
Browse latest Browse all 4826

Trending Articles