0

Я добавил параметры в свою схему, но autofrom не показывает параметры.Как показать параметры с помощью autoform

Моя схема:

BetaSignups = new Mongo.Collection("BetaSignups"); 

BetaSignups.attachSchema(new SimpleSchema({ 
    segment: { 
    type: String, 
    label: "Segmento", 
    allowedValues: ["college", "highschool", "professional"], 
    autoform: { 
     options: [ 
     {label: "Ensino superior", value: "college"}, 
     {label: "Ensino médio e pré-vestibular", value: "highschool"}, 
     {label: "Educação profissional", value: "professional"} 
     ] 
    } 
    }, 
    name: { 
    type: String, 
    label: "Nome", 
    max: 200 
    }, ... 

Я добавил форму с:

<template name="insertbetasignups"> 
    {{> quickForm collection="BetaSignups" id="insertbetasignups" type="insert"}} 
</template> 

и опции отсутствуют, то это показывает только метка: enter image description here

Я использую следующие упаковки:

meteor-platform 
materialize:materialize 
aldeed:collection2 
alanning:roles 
coffeescript 
meteorhacks:flow-router 
tap:i18n 
aldeed:autoform 
ongoworks:security 

Я добавил сервер/security.js файл:

BetaSignups.permit(['insert']).apply(); 
+0

Я пробовал то же самое, что вы предлагаете. он подходит для меня отлично ... – iamhimadri

+0

просто слепое предположение: попробуйте добавить 'options =" ​​разрешено "' для быстрой формы. –

+0

Пробовал с опциями = "разрешено" и все та же проблема .. – canesin

ответ

0

Ошибка была в моей установке, я забыл добавить этот JS к клиенту Lib для настройки пакета AUTOFORM-материализовать.

AutoForm.setDefaultTemplate('materialize');