次のように宣言されたスキーマがあります。
JobSchema = new SimpleSchema({
responsibilities: {
type: [String],
optional: true
},
'responsibilities.$': {
min: 2,
autoform: {
afFieldInput: {
class: 'form-control'
},
placeholder: 'E.g. "Build tools according to specifications"'
}
}
});
また、次のように宣言された UI ヘルパーがあります。
Template.registerHelper('currentFieldValue', function (fieldName) {
return AutoForm.getFieldValue('insertJobForm', fieldName) || '';
});
このヘルパーを使用してフォーム プレビューを生成するテンプレートがあります。配列以外のすべてのフィールドで魅力的に機能します。何もレンダリングされていません。何か案は?
{{# if currentFieldValue "responsibilities"}}
<h3>Responsibilities</h3>
{{{currentFieldValue "responsibilities"}}}
{{/if}}