Ich verwende das React-Rails-Juwel und Zugriff auf ein JSON-Objekt items
von einem Rails-Controller.reagieren json Objekte sind nicht als ein react Kind
Rails-Controller:
class ItemsController < ApplicationController
def index
@items = Item.all
render json: @items
end
end
Reagieren Mein App
Komponente diese Elemente greift und versucht, es als Stütze passieren zu einer untergeordneten Komponente:
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>
);
}
}
Und dieses Kind Komponente sieht wie folgt aus:
class ItemsContent extends React.Component {
render() {
return (
<div>
<div>Items: {this.props.items}</div>
</div>
);
}
}
ItemsContent.propTypes = {
items: React.PropTypes.object
};
Und ich bekomme diese Fehlermeldung:
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`.
Wie kann ich das umgehen? Gibt es eine Möglichkeit, JSON-Objekte in meinen React-Komponenten einfach zu verwenden?
Gerade jetzt habe ich versucht, in einem Array das JSON-Objekt Einwickeln:
tabbedContent = <ItemsContent items={[this.state.items]}></ItemsContent>;
Versuchen Sie, alle Elemente in this.props.items anzuzeigen? – erichardson30
Ja, ich versuche alle Elemente anzuzeigen! – user2082000