2017-11-22 16 views
1

posts.hbsはどうすれば

私は「onePost.id」の値に接尾辞を追加すると、それは、このファイルで行う必要があり.hbsファイル内の値を変更します。

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

答えて

3

concatテンプレートヘルパーを使用しますFAMまで

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

Blesssをあなたが答えを受け入れるを検討するためにそれが働いている場合、私のような2 hoursss – AmmarMZ

+1

@AmmarMZのために、この上で立ち往生してきました。 – kumkanillam