我正在使用 React-Rails gem 并items
从 Rails 控制器访问 json 对象。
导轨控制器:
class ItemsController < ApplicationController
def index
@items = Item.all
render json: @items
end
end
我的 ReactApp
组件访问这些项目并尝试将其作为道具传递给子组件:
class App extends React.Component {
constructor(props) {
super(props);
this.state = {
items: {},
activeTab: 'items'
};
}
componentDidMount() {
$.getJSON('/items.json', (response) => {
this.setState({ items: response })
});
}
render () {
return (
<div>
<ItemsContent items={this.state.items}>
</div>
);
}
}
这个子组件看起来像这样:
class ItemsContent extends React.Component {
render () {
return (
<div>
<div>Items: {this.props.items}</div>
</div>
);
}
}
ItemsContent.propTypes = {
items: React.PropTypes.object
};
我得到这个错误:
react.js?body=1:1324 Uncaught Invariant Violation: Objects are not valid as a React child (found: object with keys {}). If you meant to render a collection of children, use an array instead or wrap the object using createFragment(object) from the React add-ons. Check the render method of `ItemsContent`.
我该如何解决这个问题?有没有办法在我的 React 组件中轻松使用 JSON 对象?
现在我尝试将 JSON 对象包装在一个数组中:
tabbedContent = <ItemsContent items={[this.state.items]}></ItemsContent>;