Ember.js wizard control
问题 I have an ember.js wizard control with a number of steps. An ember model object has its various properties set at each stage of the wizard. The only way I can see of changing the view is to use the linkTo helper like this: {{#linkTo steps.two model}}Step 2{{/linkTo}} But this is no good to me as I will need each step that I linkTo to to be a dynamic route: @resource "steps", -> @route "one", {path: 'one/:model_id'} @route "one", {path: 'two/:model_id'} #etc. The dynamic route is no good