posts.hbs
我想在“onePost.id”值中添加后缀,必须在此文件中完成。
<br>
<h2> Blog Posts </h2>
<ul>
{{#each model as |onePost index|}}
<li id = {{index}}>{{onePost.title}} {{edit-post id = onePost.id + 'suffix' }}
</li><br>
{{/each}}
</ul>
{{add-new-post}}
答案 0 :(得分:3)
使用concat
模板助手:
<li id={{index}}>{{onePost.title}} {{edit-post id=(concat onePost.id 'suffix')}}