我正在关注使用Routes连接所有页面的Udemy教程。但是,我需要在我的网络应用程序中添加一个表单(具有验证等)。我发现alcleed:autoform但它使用HTML模板标签。根据我的理解,我的React组件无法在JSX中呈现出模板标签吗?基本上我需要添加的文本看起来像这样(取自autoform docs):
<template name="insertBookForm">
{{> quickForm collection="Books" id="insertBookForm" type="insert"}}
</template>
是否可以从路线链接到html页面?以下是我现在在routes.js中所拥有的内容,我需要/submit
能够呈现该模板:
<Router history={browserHistory}>
<Route onEnter={globalOnEnter} onChange={globalOnChange}>
<Route path="/" component={HomePage} privacy="unauth"/>
<Route path="/login" component={Login} privacy="unauth"/>
<Route path="/signup" component={Signup} privacy="unauth"/>
<Route path="/submit" component={Submit} privacy="unauth"/>
<Route path="*" component={NotFound}/>
</Route>
</Router>
我的问题有意义吗?我的默认main.html看起来像这样:
<head>
<title>Notes App</title>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1"/>
<link rel="icon" type="image/png" href="/images/favicon.png"/>
</head>
<body>
<div id="app"></div>
</body>
我的网络应用程序的完整正文链接到路由(这是在我的main.js客户端):
Meteor.startup(() => {
ReactDOM.render(routes, document.getElementById('app'));
});
答案 0 :(得分:1)
你正在混淆Blaze和React。 aldeed:autoform使用Blaze作为UI层。如果你想坚持使用纯React,现在唯一的选择是使用另一个库。制服可能是一个很好的选择:https://github.com/vazco/uniforms
如果您愿意将Blaze与React一起使用,您可以使用aldeed:autoform。我自己还没试过,但它看起来与此类似:
来自Meteor的官方React tutorial where they use a similar technique to use the Meteor AccountsUI package (which is also built in Blaze) to load the loginButtons using a React component: 的'偷来'import React, { Component } from 'react';
import ReactDOM from 'react-dom';
import { Template } from 'meteor/templating';
import { Blaze } from 'meteor/blaze';
export default class QuickForm extends Component {
componentDidMount() {
// Use Meteor Blaze to render quickForm
this.view = Blaze.render(Template.quickForm,
ReactDOM.findDOMNode(this.refs.container));
}
componentWillUnmount() {
// Clean up Blaze view
Blaze.remove(this.view);
}
render() {
// Just render a placeholder container that will be filled in
return <span ref="container" />;
}
}