Calling a handlebars block helper from another helper
问题 How can I call a handlebars block helper from another helper in ember. I am interested in converting the following in a bound helper. {{#each link in sideMenuLinks}} <li class="navigation page"> {{#linkTo ROUTE_VARIABLE link.linkToRouteContext}} {{{link.iconTag}}}<i class="icon-right-open"></i>{{link.linkText}}</a> {{/linkTo}} </li> {{/each}} Note that I will have to call a {{#linkTo}} block inside the helper and also change ROUTE_VARIABLE with a value from the property link.linkToRoute. 回答1: