初心者です
Parsingでのエラーが出て
parasingエラーの記事
を参考にインデントをずらしてみたり、
表記を変えてみたりしたのですが解決しませんでした、、
VSこーどにて
' , ' が必要です。",
とのエラーが出ます
./src/App.jsx Line 21:26: Parsing error: The type cast expression is expected to be wrapped with parenthesis
App.jsx export default class App extends React.Component{ constructor(props){ super(props); this.state= { answers: [], chats: [], current: "init", dataset: defaultDataset, open: false, } } initAnswer = () =>{ const initDataset = this.state.dataset[this.state.currentId]; const initAnswers = initDataset.answers; this.setState ( state: { ここの : でエラー answers:initAnswers }); } componentDidMount() { this.initAnswer() } render(){ return ( <section className="c-section"> <div className="c-box"> <AnswersList answers={this.state.answers}/> <Chat /> </div> </section> ); } }
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/08/26 04:37
2020/08/26 04:40
2020/08/26 05:07