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 trialAlbert González
22,953 PointsThe 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
Albert González
22,953 PointsRick,
I put this.resource because this.route it doesn't work. If you put this.route this script fails!
1 Answer
James Allen Brown
2,280 PointsIn 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})
});
});
Rick Gates
11,061 PointsRick Gates
11,061 PointsCan't confirm, but perhaps it's because your 4th line still says this.resource.
Rick