0
私はReact.jsコンポーネントクラス内の変数にアクセスする方法
const stateData = [
{
'id': 'AL',
'name': 'Alabama',
'capital': 'Montgomery',
'date': 'December 14, 1819'
},
{
'id': 'AK',
'name': 'Alaska',
'capital': 'Juneau',
'date': 'January 3, 1959'
}];
const SearchBarAndResults = React.createClass({
render() {
// QUESTION: how do I access variable stateData here and replace field
// from 'id': 'AL' to 'id': 'AK'?
}
});
はまあ、このコード例を与えられ、コードが同じスコープで書かれて表示され、あなたのコンポーネント内の任意の関数から 'stateData'にだけアクセスすることができます。 – Aaron