EmberJS - How to dynamically generate link with linkTo?

后端 未结 3 857
南笙
南笙 2021-01-18 09:13

Is there a way to dynamically generate a link using the link-to helper by passing a variable with the route path?

For example, instead of hard coding the path like t

3条回答
  •  庸人自扰
    2021-01-18 09:48

    There is another very similar SO Question in which I answer this question. The solution is possible using the inline version of the link-to helper.

    In this situation, we would have:

    {{link-to model.title destination model}}
    

    Which would be compiled to:

    
      Click me
    
    

提交回复
热议问题