如何更改.hbs文件中的值

时间:2017-11-22 01:49:22

标签: ember.js

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}}

1 个答案:

答案 0 :(得分:3)

使用concat模板助手:

<li id={{index}}>{{onePost.title}} {{edit-post id=(concat onePost.id 'suffix')}}