私はユーザーエージェントを使用してjsonを状態に設定しようとしていますが、エラーが発生します:
キャッチされていない不変違反:オブジェクトはReact子としては無効です(見つかった:キーが{...}のオブジェクト)。子のコレクションをレンダリングする場合は、代わりに配列を使用するか、ReactアドオンのcreateFragment(object)を使用してオブジェクトをラップします。
getInitialState: function(){
return {
arrayFromJson: []
}
},
loadAssessmentContacts: function() {
var callback = function(data) {
this.setState({arrayFromJson: data.schools})
}.bind(this);
service.getSchools(callback);
},
componentWillMount: function(){
this.loadAssessmentContacts();
},
onTableUpdate: function(data){
console.log(data);
},
render: function() {
return (
<span>{this.state.arrayFromJson}</span>
);
}
getSchools : function (callback) {
var url = 'file.json';
request
.get(url)
.set('Accept', 'application/json')
.end(function (err, res) {
if (res && res.ok) {
var data = res.body;
callback(data);
} else {
console.warn('Failed to load.');
}
});
}
{
"schools": [
{
"id": 4281,
"name": "t",
"dfe": "t",
"la": 227,
"telephone": "t",
"address": "t",
"address2": "t",
"address3": "t",
"postCode": "t",
"county": "t",
"ofsted": "t",
"students": 2,
"activeStudents": 2,
"inActiveStudents": 0,
"lastUpdatedInDays": 0,
"deInstalled": false,
"inLa": false,
"status": "unnassigned",
"authCode": "t",
"studentsActivity": 0
},......
]}
これを行うことはできません:{this.state.arrayFromJson}
エラーが示唆するように、あなたがしようとしていることは無効です。配列全体をReact子としてレンダリングしようとしています。これは無効です。配列を反復処理し、各要素をレンダリングする必要があります。それには.map
を使用します。
Reactを使用して配列の要素をレンダリングする方法を学習できるリンクを貼り付けています。
http://jasonjl.me/blog/2015/04/18/rendering-list-of-elements-in-react-with-jsx/
それが役に立てば幸い!
Reactにそれをレンダリングする方法を伝えるものがないため、オブジェクトの配列を返すことはできません。次のようなコンポーネントまたは要素の配列を返す必要があります。
render: function() {
return (
<span>
// This will go through all the elements in arrayFromJson and
// render each one as a <SomeComponent /> with data from the object
{this.state.arrayFromJson.map(function(object) {
return (
<SomeComponent key={object.id} data={object} />
);
})}
</span>
);
}