Ember.js でわかりやすい URL を取得したいのですが、今のところ ID でしか機能しません。
/#/post/sample-title はどのように使用できますか?
/#/12/sample-title (12 は ID)。
router.js
this.resource('post', { path: '/post/:post_slug/' });
post_route.js
(...)
return App.Post.find(model.post_slug);
助けてくれてありがとう!