我試圖創建一個基於react_on_rails
寶石一個示例應用程序無法正常工作。在我反應過來的代碼反應inbuild功能像onChange
或onSubmit
不工作。陣營的onChange方法react_on_rails
我HelloWorldWidget
組件看起來是這樣的。
...
constructor(props, context) {
super(props, context);
_.bindAll(this, 'handleChange');
}
handleChange(e) {
const name = e.target.value;
console.log(name);
//this.props.updateName(name);
}
render() {
const { name } = this.props;
return (
<div className="container">
<h3>
Hello, {name}!
</h3>
<input className="form-control input-sm col-sm-4" type="text" onChange={this.handleChange}/>
</div>
);
}
另外,如果我禁用服務器端在我views/hello_world/index.html.erb
文件我的組件的預渲染,則該組件沒有渲染的UI。
<%= react_component("HelloWorldApp", props: @hello_world_props , prerender: false) %>
GitHub庫:react-on-rails-sample-app
你得到錯誤?什麼是'_.bindAll(this,'handleChange');'? –
沒有錯誤。它是lodash函數,它將我們所有的函數綁定到'this'上下文中。 –