Meteor autoform selectize select 字段未显示所有选项

Meteor autoform selectize select field not displaying all options

我将 Autoform 与 selectize 一起使用,但并非所有字段选项都显示在模板中(10 个中的 1 个似乎工作正常)。

我以前在没有自动表单的情况下手动渲染表单,但从未遇到过这个问题。

这是我的模板助手:

properties: function() {

        var properties =[];

        var propertiesCursor = Properties.find();

        propertiesCursor.forEach(function(property) {
            properties.push({
                label: property.name,
                value: property._id
            });
        });

        return properties;

    }

在我的模板中:

{{> afFieldInput name='location.propertyId' type='selectize' options=properties}}

嗯,找到了.. isReactiveOptions=true 需要在模板中设置。

选择需求,文档中没有。