0
Firebaseデータベースから初期データをロードしようとしています。現在、データベースの1つのエントリの内容で状態を更新できます。しかし、配列を通してレンダリングされるものをより詳細に制御したいのですが、どのようにして配列に配列をバインドし、それを反復処理するのですか?ただし、componentDidMount()を実行した後のみです。データベースアレイからのビューの取得と更新
これは私が受けていますエラーです:
firebase.js:283 Uncaught Invariant Violation: Objects are not valid as a React child (found: object with keys {home}). 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 `Cases`.
これは私のコードです:
import React, { Component } from 'react';
import * as firebase from 'firebase';
class Cases extends Component{
constructor() {
super();
this.state = ({
cases: 10
});
}
componentDidMount() {
const rootRef = firebase.database().ref('cases');
const casesRef = rootRef.child('home');
rootRef.on('value', snap => {
this.setState({
cases: snap.val()
})
})
}
render() {
return (
<div>
<h2>Cases</h2>
{this.state.cases}
</div>)
}
}
export default Cases;
this.state.casesの内容は何ですか? –
こんにちはSergey、時間を割いてくれてありがとう!私は束をデバッグし、さらにいくつかの情報を見つけました。しかし、私は問題をより明確に示すために新しい質問を開いた。あなたが見たい場合は、私はこのスレッドにすべての情報をアップロード:[リンク](http://stackoverflow.com/questions/39114285/rendering-javascript-object-in-react) – dwigt