使用把手if
和unless
阻止助手:
<input id="yes" type="radio" {{#if attendedRehersal}}checked{{/if}} ?>
<label for="yes">Yes</label>
<input id="no" type="radio" {{#unless attendedRehersal}}checked{{/unless}} ?>
<label for="no">No</label>
其中attendedRehersal
是发送到视图的布尔字段:
{
attendedRehersal: true // false
}