收音机检查数据库布尔值

时间:2018-01-15 10:34:15

标签: node.js express handlebars.js

我在这里有以下内容

enter image description here

enter image description here

一个布尔值存储在数据库中,所以我想要它,所以如果选中yes或no,则选中单选按钮并表示数据库中的布尔值。

我将如何做到这一点。

1 个答案:

答案 0 :(得分:0)

使用把手ifunless阻止助手:

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