我已经更新到simple-schema npm并安装了autoform6.0,但是我似乎无法成功地为集合生成表单。我得到这个错误,Exception in template helper: TypeError: Cannot read property 'mergedSchema' of undefined,我不知道它指的是什么,因为这是一个新的构建,所以它不应该引用任何旧的autoform或simple-schema包。
路径:imports/ui/pages/candidate-registration/contact-information/contact-information.html
<template name="App_contactInformation">
{{#with profile}}
{{firstName}}
{{> quickForm collection=Profile id="updateProfile" type="update"}}
{{/with}}
{{/if}}
</template>路径:imports/ui/pages/candidate-registration/contact-information/contact-information.js
import { Profile } from '/imports/api/profile/profile.js';
import './contact-information.html';
Template.App_contactInformation.onCreated(function () {
this.autorun(() => {
this.subscribe('private.profile');
});
});
Template.App_contactInformation.helpers({
profile() {
var user = Profile.findOne({userId: Meteor.userId()});
return user;
}
});路径:imports/api/profile/server/publications.js
// All profile-related publications
import { Meteor } from 'meteor/meteor';
import { Profile } from '../profile.js';
Meteor.publish('private.profile', function() {
if (!this.userId) {
return this.ready();
}
return Profile.find({"userId": this.userId});
});发布于 2017-03-17 14:06:28
确保您也在使用aldeed:collection2-core并拥有attached your schema to your collection。例如..。
Books.attachSchema(Schemas.Book);https://stackoverflow.com/questions/42615342
复制相似问题