0

当我使用autoform bootstrap datepicker时,我在下面的屏幕截图中遇到以下错误和定位。

在此处输入图像描述

错误:

2meteor.js:887 来自 Tracker afterFlush 函数的异常:未定义不是函数类型错误:未定义不是 null 的函数。(http://localhost:3000/packages/aldeed_autoform-b​​s-datetimepicker.js?279246d1cf7d4b5603ac030d7466e9bc6e5ac0d1:171:11

这是我的代码:

套餐:

aldeed:autoform                     # Auto create forms with validations from schema (Uses bootstrap by default).
twbs:bootstrap                      # Bootstrap.
tsega:bootstrap3-datetimepicker     # Bootstrap datetime picker.
aldeed:autoform-bs-datetimepicker   # Add datetime picker to autoform.

架构:

   start:
      type: Date
      label: 'Start'
      autoform:
         type: 'bootstrap-datetimepicker'
   end:
      type: Date
      label: 'End'
      autoform:
         type: 'bootstrap-datetimepicker'

形式:

   +autoForm(collection='Events' id='insertEventForm' type='insert')
      fieldset
         legend Add an event
         +afQuickField(name='start')
         +afQuickField(name='end')
         +afQuickField(name='assignedToId')
      button.btn.btn-primary(type='submit') Submit

如果有人能告诉我我错过了什么,我将不胜感激。

4

1 回答 1

1

你需要一个围绕控件的容器 div

<body>
   <div class="container">
      <div class="row">
          <div class="col-md-6">
              your code snippet here
          </div>
      </div>
   </div>
</body>
于 2015-03-01T06:02:11.977 回答