##環境
React ver.16 以下のCDNを使用しています
html
1<script crossorigin src='https://unpkg.com/react@16/umd/react.development.js'></script> 2<script crossorigin src='https://unpkg.com/react-dom@16/umd/react-dom.development.js'></script> 3<script src="https://cdnjs.cloudflare.com/ajax/libs/babel-core/5.8.34/browser.min.js"></script>
##問題のコード/エラー
React
1class Contact extends React.Component { 2 constructor(props) { 3 super(props); 4 this.state = { 5 name: '', 6 name_empty: false, 7 email: '', 8 email_empty: false, 9 disabled: true 10 }; 11 } 12 13 handleNameChange(event){ 14 const user_name = event.target.value; 15 const nameEmpty = user_name === ''; 16 this.setState({ 17 name: user_name, 18 name_empty: nameEmpty 19 }); 20 } 21 22 handleEmailChange(event){ 23 const user_email = event.target.value; 24 const isEmpty = user_email === ''; 25 this.setState({ 26 email: user_email, 27 email_empty: isEmpty 28 }); 29 } 30 31 checkForm(){ 32 if(this.state.name_empty || this.state.isEmpty){ 33 this.setState({ 34 disabled: true 35 }); 36 }else{ 37 this.setState({ 38 disabled: false 39 }); 40 } 41 } 42 43 render(){ 44 let contactForm; 45 contactForm = ( 46 <div className="contact-item"> 47 48 /*情報入力の部分は省略します*/ 49 50 <div className="submit-btn"> 51 <input disabled={()=>{this.checkForm()}} type="submit" value="送信する" /> 52 </div> 53 </div> 54 ); 55 return ( 56 <form action="" method="post"> 57 {contactForm} 58 </form> 59 ); 60 }
inputタグのdisabledのcheckForm()が動作しません。
Warning: Invalid value for prop `disabled` on <input> tag. Either remove it from the element, or pass a string or number value to keep it in the DOM
まだロジック的に足さないといけない部分はありますが、なんとかこのdisabledをとりあえず機能させたいです。
何が間違っているのか検討もつかなく止まってしまいました。
ご協力いただければと思います。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2019/09/25 03:27