我有兩個隱藏字段在我的autoform架構定義如下所示。我希望將這兩個字段與其他字段保存在一起,而不會將它們顯示給應用用戶。但我注意到autoform呈現的html表示這兩個隱藏的字段沒有價值,他們也沒有將其他字段保存到數據庫。不知道我可能在這裏丟失/錯誤?感謝您的幫助流星autoform形式隱藏字段不呈現defaultValue和不保存
Invoice = new SimpleSchema({
clientid: {
type: String,
optional: true
},
total: {
type: String,
label: 'Total Amount',
optional: true
},
tax: {
type: String,
label: 'Taxes',
optional: true
},
category: {
type: String,
optional: true,
autoform: {
type: "hidden",
label: false
},
defaultValue: 'Test Category'
}
});
{{> quickForm id="invoiceForm" buttonContent="Insert" buttonClasses="btn btn-primary btn-sm" schema=Invoice type="method" meteormethod="saveInvoice"}}
謝謝,那我最終通過Autoform.hooks做了什麼 – MChan