Meteor autoform选择选择字段不显示所有选项

时间:2016-02-17 14:22:57

标签: meteor meteor-autoform

我正在使用Autoform进行选择,并不是所有的字段选项都显示在模板中(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}}

1 个答案:

答案 0 :(得分:0)

好吧,发现它.. isReactiveOptions = true需要在模板中设置。

选择要求,而不是在文档中。