0

スキーマにオプションを追加しましたが、autofrom でオプションが表示されません。

私のスキーマ:

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

server/security.js ファイルを追加しました:

BetaSignups.permit(['insert']).apply();
4

1 に答える 1

0

エラーはセットアップにありました。autoform-materialize パッケージを構成するために、この js をクライアント ライブラリに追加するのを忘れていました。

AutoForm.setDefaultTemplate('materialize'); 
于 2015-07-23T13:46:56.437 に答える