react: typescript interface useState issue


 define interface:

interface ILoginState {
  imageId: string;
  imageSrc: string;
  username: string;
  password: string;
  verifyCode: string;    
}

useState:

const [loginData, setLoginData] = useState(loginState)

update imageId && imageSrc:

setLoginData({
  ...loginData,
  imageId: res.data.id.
  imageSrc: res.data.content
})

antd inputchange:

onInputChange(e: FormEvent<HTMLInputElement>) {
  const inputName = e.currentTarget.id;
  const inputValue = e.currentTarget.value;
  setInputData({
    [inputName]: inputValue
  } as {[key in keyof ILoginState]:ILoginState[key]})
}

 antd form onsubmit

<Form onSubmit={handleSubmit.bind(this)}>

add window resizeLitener

const [contentHeight, setHeight]=useState(INTIAL_HEIGHT)
useEffect(()=>{
  screenChange();
  return () => removeListener()//回调销毁
},[contentHeight])

const screenChange = () => {
  window.addEventListener("resize", handleResize)  
}

const removeListener = () => {
  window.removeEventListener("resize", handleResize)  
}

handleResize =(e)=> {
  setHeight(e.target.innerHeight-headerHeight-footerHeight)
}

 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM