要在此模板或该模板中显示属性,特别是在一个模板中显示所有属性,在其他模板中,仅显示一些属性,创建新模板,并且需要从常规模板添加多个属性,但是我不知道怎么做。
定义模板成员资格的代码:
.form-group{data: {behavior: 'standard_template'}}
= f.label
.form-group
= f.label
负责显示的脚本,为哪个模板显示的内容:
:coffee
$ ->
$selectedTemplate = $('#selection_template option:selected')
if $selectedTemplate.val() != 'standard'
$('*[data-behavior="standard_template"]').hide()
$("#selection_template").on "change", (e) ->
if $(this).find("option:selected").val() != 'standard'
$('*[data-behavior="standard_template"]').hide()
else
$('*[data-behavior="standard_template"]').show()
尝试了所有选项,达到了标准模板以外的所有选项,显示了必要的属性,但不显示特定属性。