Valtio에서 초절 간단 React 상태 관리
2640 단어 valtio자바스크립트Reactreact-hooks
상태 객체를 감싸다
import { proxy, useProxy } from 'valtio'
const state = proxy({ count: 0, text: 'hello' })
어디서나 변경 가능
setInterval(() => {
++state.count
}, 1000)
useProxy로 React로
function Counter() {
const snapshot = useProxy(state)
// 読み込む場合はsnapshot、いじる場合はstate
// snapshotの読み込み部分が変化したら再描画される
return (
<div>
{snapshot.count}
<button onClick={() => ++state.count}>+1</button>
</div>
)
}
Reference
이 문제에 관하여(Valtio에서 초절 간단 React 상태 관리), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/daishi/items/5d49e3f63e539c90499a텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)