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 trialDavid Mandel
33,158 PointsGetting rid of the '#' for the other routes
In my 'router.js' file of my Ember application, I wrote
Blogger.Router.map(function () {
this.resource('posts', {path:'/'});
});
And that means that 'posts' lives on the root of the server...
But if I change the next route to:
this.resource('about', {path:'/about'});
I still get the '#'.
I.e., the URL when I click on 'about' is : http://0.0.0.0:8000/#/about
Just confused as to why I can't get rid of that silly '#' for the other paths.
3 Answers
Ken Alger
Treehouse TeacherD;
According to the Ember docs on routing and specifying the URL type:
By default the Router uses the browser's hash to load the starting state of your application and will keep it in sync as you move around. At present, this relies on a hashchange event existing in the browser.
There is an explanation on that same page as to how to change /#/posts/new
to /posts/new
.
Hope it helps,
Ken
David Mandel
33,158 PointsThank you Ken! So it took a little bit of testing to figure out, but essentially the solution for me was to add:
Blogger.Router.reopen({
location: 'history'
});
To the top of my router.js file. And keeping the map functions below.
Now the # is gone! :)
Rick Gates
11,061 PointsThe # is gone, but it sure doesn't seem to like it when you reload the page from a linked page like /contact/phone.
Rick
Ken Alger
Treehouse TeacherD;
Pleased to hear it worked out! Ember.js is a great framework with a lot of learning involved to access it's fullest potential. Sounds like you are on your way!
Happy coding,
Ken