我想在 Ember.js 中获取友好的 URL,但目前它仅适用于 ID。
如何使用 /#/post/sample-title ?
也许这会更容易(并且对我有效):/#/12/sample-title(12 是 ID)。
路由器.js
this.resource('post', { path: '/post/:post_slug/' });
post_route.js
(...)
return App.Post.find(model.post_slug);
感谢您的任何帮助!