作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个需要显示/隐藏另一个输入框的复选框。我正在做以下事情:
架构:
isFlexibleTime:
type: Boolean
label: 'Is the start time flexible?'
flexibleTimeDetails:
type: String
label: 'Flexible time details'
optional: true
+afQuickField(name='isFlexibleTime')
if afFieldValueIs name='isFlexibleTime' value=true
+afQuickField(name='flexibleTimeDetails')
最佳答案
编辑
实际上,经过进一步检查,似乎 AutoForm 5.1.2 https://github.com/aldeed/meteor-autoform/issues/861 中的复选框事件目前存在错误。
该问题已经开放了一段时间,因此您可以使用以下快速解决方法:
在您的模板事件中:
'click [name=isFlexibleTime]': function() {
Session.set('isFlexibleTime', AutoForm.getFieldValue('isFlexibleTime','ID_OF_YOUR_AUTOFORM'));
}
模板助手:
isChecked: function() {
return Session.get('isFlexibleTime');
}
然后:
{{#if isChecked}}
{{> afQuickField name="flexibleTimeDetails"}}
{{/if}}
{{> afQuickField name="isFlexibleTime"}}
{{#if afFieldValueIs name="isFlexibleTime" value="true"}}
{{> afQuickField name="flexibleTimeDetails"}}
{{/if}}
关于带有 bool 复选框的 meteor 自动成型 "afFieldValueIs"仅触发一次,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29705585/
我是一名优秀的程序员,十分优秀!