前提・実現したいこと
Reactを使っ他簡単なアプリケーションを作っています。
Main.jsxのtoggleSmileをImage.jsxで実行し、条件分岐を使用して5で割れる場合(ture)は「5で割れる」を出力し,割れない場合(false)は「5で割れない」を出力したいと思っています。
しかし、常に「5で割れない」が出力している状態です。
カウントのプラス、マイナスの実装、カウントの表示は正常にできています。
Image.jsxの中に書いてある
// テスト検証
の条件分岐はうまく実装できています。
個人的にはMain.jsxの中に書いてあるtoggleSmile=()関数の受け渡しがうまくできていないと考えています。
該当のソースコード
以下はsrcディレクトリないの関係していると思われるファイルです。indexはjs拡張子です。それ以外のファイルの拡張子は.jsxです。
index
1import React from 'react'; 2import ReactDOM from 'react-dom'; 3import './index.css'; 4// import App from './App'; 5// import Blog from './blog'; 6import Main from './Main'; 7import reportWebVitals from './reportWebVitals'; 8 9 10ReactDOM.render( 11 <React.StrictMode> 12 <Main /> 13 </React.StrictMode>, 14 document.getElementById('root') 15); 16 17// If you want to start measuring performance in your app, pass a function 18// to log results (for example: reportWebVitals(console.log)) 19// or send to an analytics endpoint. Learn more: https://bit.ly/CRA-vitals 20reportWebVitals(); 21
Main
1import React from 'react'; 2import Number from './Number'; 3 4 5 6class Main extends React.Component{ 7 constructor(props){ 8 super(props); 9 this.state={ 10 count:0, 11 isSmile:false 12 } 13 } 14 15 addCount = ()=>{ 16 this.setState({ 17 count : this.state.count+1 18 }); 19 } 20 downCount = ()=>{ 21 this.setState({ 22 count : this.state.count-1 23 }); 24 } 25 toggleSmile=()=>{ 26 if(this.state.count%5 === 0){ 27 this.setState({ 28 isSmile:true 29 }) 30 }else{ 31 this.setState({ 32 isSmile:false 33 }) 34 } 35 } 36 render(){ 37 return( 38 <> 39 <Number 40 count = {this.state.count} 41 add ={()=>{this.addCount()}} 42 down ={()=>{this.downCount()}} 43 toggle = {()=>{this.toggleSmile()}} 44 /> 45 </> 46 ) 47 } 48} 49 50export default Main;
editedMain
1import React from 'react'; 2import Number from './Number'; 3 4 5 6class Main extends React.Component{ 7 constructor(props){ 8 super(props); 9 this.state={ 10 count:0, 11 isSmile:false 12 } 13 } 14 15 16 addCount = ()=>{ 17 this.setState({ 18 count : this.state.count+1 19 }); 20 } 21 downCount = ()=>{ 22 this.setState({ 23 count : this.state.count-1 24 }); 25 } 26 toggleSmile=()=>{ 27 if(this.state.count%5 === 0){ 28 this.setState({ 29 isSmile:true 30 }) 31 }else{ 32 this.setState({ 33 isSmile:false 34 }) 35 } 36 } 37 38 render(){ 39 return( 40 <> 41 <Number 42 count = {this.state.count} 43 add ={()=>{this.addCount()}} 44 down ={()=>{this.downCount()}} 45 toggle = {()=>{this.toggleSmile()}} 46 isSmile = {this.state.isSmile} 47 /> 48 </> 49 ) 50 } 51} 52 53export default Main;
Number
1import React from 'react'; 2import Image from './Image'; 3 4const Number = (props) => { 5 return( 6 <> 7 <Image 8 count = {props.count} 9 toggle = {props.toggle} 10 /> 11 <h2>{props.count}</h2> 12 <br/> 13 <div className="boxInner"> 14 <div className="btn" onClick = {()=>props.add()}>プラス</div> 15 <div className="btn" onClick = {()=>props.down()}>マイナス</div> 16 </div> 17 </> 18 ) 19}; 20export default Number;
editedNumber
1import React from 'react'; 2import Image from './Image'; 3 4const Number = (props) => { 5 return( 6 <> 7 <Image 8 count = {props.count} 9 isSmile = {props.isSmile} 10 /> 11 <h2>{props.count}</h2> 12 <br/> 13 <div className="boxInner"> 14 <div className="btn" onClick = {()=>{props.add();props.toggle()}}>プラス</div> 15 <div className="btn" onClick = {()=>{props.down();props.toggle()}}>マイナス</div> 16 17 </div> 18 </> 19 ) 20}; 21export default Number;
Image
1import React from 'react'; 2 3 4const Image = (props) => { 5 // テストコードです。 6 console.log(props.toggle); 7 // テスト検証 8 const name = "foo" 9 return( 10 <> 11 <div className="img"> 12 {(() => { 13 if (props.toggle === true) { 14 return <span>5で割れる</span> 15 } else { 16 return <span>5で割れない</span> 17 } 18 })()} 19 <br/> 20 {/* テスト検証 */} 21 {(() => { 22 if (name === "goo") { 23 return <span>fooです</span> 24 } else { 25 return <span>fooでないです</span> 26 } 27 })()} 28 </div> 29 </> 30 ) 31}; 32export default Image;
editedImage
1import React from 'react'; 2 3 4const Image = (props) => { 5 return( 6 <> 7 <div className="img"> 8 {(() => { 9 if (props.isSmile === true) { 10 return <span>5で割れる</span> 11 } else { 12 return <span>5で割れない</span> 13 } 14 })()} 15 </div> 16 </> 17 ) 18}; 19export default Image;
補足情報(FW/ツールのバージョンなど)
開発環境はcreate react appを使用しています。
edited~と言うファイルは変更後のファイルです。Mainはreturn内でpropsのisSmileを追加。Number.jsxではonClickの関数追加。
Image.jsxでは条件分岐の条件変更。
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/12/04 14:24
2020/12/04 14:29
2020/12/04 14:41
2020/12/04 15:13