这是一个非常简单的应用程序。我不知道为什么我得到“Uncaught RangeError:超出最大调用堆栈大小”。
在名为'both'的文件夹中,我有一个JS文件,其架构定义如下
Schema1 = new SimpleSchema({
name:{
type:String,
label:'Name'
}
});
在客户端文件夹中 现在我有一个HTML模板,如下所示:
<template name="test">
{{#autoForm schema="Schema1" id = "schema1" type="method-update" meteormethod="processInServer" doc=formDoc}}
{{> afQuickField name='name'}}
<button type="insert">Update</button>
{{/autoForm}}
</template>
上述模板的助手如下:
Template.test.helpers({
formDoc:function(){
return 'avishek';
}
})
var hook = {
before:{
method:function(doc){
console.log(doc);
return doc;
}
}
}
AutoForm.addHooks(['schema1'],hook);
在服务器文件夹中,
Meteor.methods({
'processInServer': function () {
console.log('called server');
return 'success';
}
})
此应用程序可能出错。除此之外我什么都没有。
答案 0 :(得分:0)
我知道了。帮助者必须具有_id属性
Template.test.helpers({
formDoc:function(){
return {'_id':'acbde1222','name':'avishek'};
}
})