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>
и опции отсутствуют, то это показывает только метка:
Я использую следующие упаковки:
meteor-platform
materialize:materialize
aldeed:collection2
alanning:roles
coffeescript
meteorhacks:flow-router
tap:i18n
aldeed:autoform
ongoworks:security
Я добавил сервер/security.js файл:
BetaSignups.permit(['insert']).apply();
Я пробовал то же самое, что вы предлагаете. он подходит для меня отлично ... – iamhimadri
просто слепое предположение: попробуйте добавить 'options =" разрешено "' для быстрой формы. –
Пробовал с опциями = "разрешено" и все та же проблема .. – canesin