0
我有簡單的JSONReactJs呈現簡單的JSON
{"id":157,"content":"Hello, World!"}
我想渲染ID在anotther一個DIV和內容。對我來說問題是當我打電話{this.state.data.content}
兩次崩潰。
var Stuff = React.createClass({
getInitialState: function() {
return {
data: []
};
},
componentDidMount: function() {
$.ajax({
url: "http://rest-service.guides.spring.io/greeting",
dataType: 'json',
cache: false,
success: function(response) {
this.setState({
data: response
});
}.bind(this),
error: function(xhr, status, err) {
console.error(this.props.url, status, err.toString());
}.bind(this)
});
},
render: function() {
return (
<div>Response - {this.state.data.content}</div>
);
}
});
你有沒有[檢查你的控制檯](http://stackoverflow.com/documentation/javascript/185/hello-world/714/using-console-log)的錯誤? –
我不知道你在說什麼 – TeodorKolev