はじめに
2ヶ月前にReactに入門した者です。
React、Typescript共に初心者ですが、双方を一緒に学びたいと思い、コードを書いています。
本件はTypescriptに関する質問です。
技術環境
- React
- Typescript
- Ruby on Rails
参考URL
ReactJS + Ruby on Rails API + Heroku App
エラー内容
「プロパティ 'lists' は型 'Readonly<{}>' に存在しません。」
以下の「lists」にてエラーが発生するのですが、エラー内容的に型定義を行っていないことが原因だと考えています。
しかし、型をどこにどう定義すればいいのかわかりませんでした。
tsx
1{this.state.lists.map(list => { 2 return (<List list={list} key={list.id} />) 3 })}
こちらのコードの全容は以下の通りです。
ListsContainer.tsx
tsx
1import React, { Component } from 'react'; 2import axios from 'axios'; 3import List from './List'; 4 5class ListsContainer extends Component { 6 constructor(props) { 7 super(props); 8 this.state = { 9 lists: [] 10 }; 11 } 12 componentDidMount() { 13 axios 14 .get('http://localhost:3001/api/v1/lists.json') 15 .then((response) => { 16 console.log(response); 17 this.setState({ 18 lists: response.data, 19 }); 20 }) 21 .catch((error) => console.log(error)); 22 } 23 render() { 24 return ( 25 <div className='Lists-container'> 26 // ココの「lists」がエラーになります↓↓ 27 {this.state.lists.map(list => { 28 return (<List list={list} key={list.id} />) 29 })} 30 </div> 31 ); 32 } 33} 34 35export default ListsContainer;
初学者で知識が浅いので、ご教授いただけると嬉しいです。
クラスコンポーネントの型定義
js
1class ListsContainer extends Component<{}, { lists: ListData[] }> { 2 constructor(props) { 3 super(props); 4 this.state = { 5 lists: [], 6 }; 7 } 8 componentDidMount() { 9 axios 10 .get('http://localhost:3001/api/v1/lists.json') 11 .then((response) => { 12 console.log(response); 13 this.setState({ 14 lists: response.data, 15 }); 16 }) 17 .catch((error) => console.log(error)); 18 } 19 render() { 20 return ( 21 <div className='Lists-container'> 22 {this.state.lists.map((list) => { 23 return <List list={list} key={list.id} />; 24 })} 25 </div> 26 ); 27 } 28}
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/07/05 16:23
2020/07/10 05:51