0
オートフォームフックの動作に問題があります。現在、このクイックフォームを使用しています。オートフォームフックonSuccess
{{>quickForm id="studentForm" collection="Students" type="insert" template="bootstrap3-horizontal" label-class="col-sm-3" input-col-class="col-sm-9"}}
フォームが正常に送信されると成功メッセージが表示されます。現在、私はこのコードでの作業イベントを持っている:
Template.home.events({
"submit #student-form": function(event) {
event.preventDefault();
swal("Success!", "You have been added to the WaitList", "success")
}
});
私はそうのようなオートフックを使用しようとしています:
AutoForm.hooks({
studentForm: {
onSuccess: function(insert, result) {
swal("Success!", "You have been added to the wait list", "success")
}
}
})
これは、現時点では私のために働いていないと私は理由に困惑していますこれは動作していません。自動フォームフックのドキュメントhere。
私の問題は何ですか?
あなたはpreventDefault()をコメントアウトしようとしましたか? – zim
それはそのトリックでした。ありがとう! –
グレート私はそれを答えにします – zim