Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

JavaScript Ember.js Routes and Templates Nested Routes

Albert González
Albert González
22,953 Points

The nested routes in Ember v2 are different

I have the next code:

this.route('posts', {path: '/'});
    this.route('about');
    this.route('contact', function() {
        this.resource('phone');
    });

The page says me there is a deprecated function "this.resource", when I put "this.route", the page doesn't load. Anyone can help me?

Thanks

Can't confirm, but perhaps it's because your 4th line still says this.resource.

Rick

Albert González
Albert González
22,953 Points

Rick,

I put this.resource because this.route it doesn't work. If you put this.route this script fails!

1 Answer

In case anybody is still wondering. I think this is what works with 2.0? Could be wrong.

Router.map(function() {
  this.route('posts', {path: '/'});
  this.route('about');
  this.route('contact', function() {
    this.route('phone', {resetNamespace: true})
  });
});