CollectionFS, Meteor.js, Summernote(WYSIWYG) and file upload
问题 I'm working on a project using Meteor.js, Summernote and Collection FS. First of, here is my code. Template.postSubmit.rendered = function() { $('#summernote').summernote({ height: 400, maxHeight:800, minHeight:250, onImageUpload: function(files, editor, $editable) { Images.insert(files[0], function (err, fileObj) { editor.insertImage($editable, fileObj.url()); }); } }); The image when inserted does successfully go into the specified URL for image storage. Here is the CollectionFS javascript.