Come posso impostare un collegamento per instradare con un segmento dinamico. Secondo guidare parto da questoCome posso impostare un collegamento per instradare con un segmento dinamico
window.App = Ember.Application.create()
App.Router.map ->
@resource 'products'
@resource 'product', path: '/product/:product_id'
nel mio modello:
{{#linkTo "product.1"}}products{{/linkTo}}
Purtroppo questo mi dà l'errore follwing:
Uncaught Error: assertion failed: The attempt to linkTo route 'product.1' failed.
The router did not find 'product.1' in its possible routes: 'products', 'product', 'index'
Nel ciclo '# each' ho dovuto citare' product': '{{#linkTo 'product' this}} Dettagli {{/ linkTo}}'. –