是否有可能让meteor-autoform与meteor-collection2-core和react-meteor合作?
MWE
我希望有这样的东西。
./进口/ API / Books.js
import { Mongo } from 'meteor/mongo';
import SimpleSchema from 'simpl-schema';
const Books = new Mongo.Collection("books");
Books.attachSchema(new SimpleSchema({
title: {
type: String,
label: "Title",
max: 200
},
author: {
type: String,
label: "Author"
},
}));
if (Meteor.isServer) {
Meteor.publish('allBooks', function () {
return Books.find({}, );
});
};
export default Books;
./进口/客户端/ NewBooks.js
import React, { Component, PropTypes } from 'react';
import { createContainer } from 'meteor/react-meteor-data';
import { quickForm } from 'meteor-autoform';
import Books from '../api/Books';
class NewBooks extends Component {
constructor(props) {
super(props)
this.state = {}
}
render() {
return (
<div className="container">
<quickForm
collection={Books}
id="insertBookForm"
type="insert">
</quickForm>
</div>
)
}
};
export default createContainer(() => {
Meteor.subscribe('allBooks');
return {
books: Books.find().fetch()
}
}, NewBooks);
答案 0 :(得分:4)
npm包Uniforms使用Bootstrap非常容易。
除了./imports/client/NewBooks.js
import AutoForm from 'uniforms-unstyled/AutoForm';
...
<AutoForm
schema={Books._collection.simpleSchema()}
onSubmit={doc => console.log(doc)}
/>
答案 1 :(得分:2)
据我所知,Autoform在很大程度上依赖于Blaze,所以,你可以在反应中使用blaze autoform组件(参见here),或者你可以使用不同的库。我在最近的一个项目中使用了这个:github.com/nicolaslopezj/simple-react-form。这是强大的,但更多的是动手实践的&#39;比神奇的Autoform(你必须编写自己的表格和字段组件)。