您好,登錄后才能下訂單哦!
今天學習了一下react,感覺跟vue 語法類似。于是舉一反三搜索了一下,發現由個工具,可以提供這樣子的服務:
https://tools.w3cub.com/vue-to-react
created: 'componentWillMount',
mounted: 'componentDidMount',
updated: 'componentDidUpdate',
beforeDestroy: 'componentWillUnmount',
errorCaptured: 'componentDidCatch',
render: 'render'
react 沒有 computed, 需要支持 手動 setState
hooks 下如何還原 setState 類似的操作:
可以使用 useReducer
const [state, setState] = useReducer(
(state, action) => {
return {
...state,
...action
};
},{ name: '小熊貓',category: '小熊貓科' })
setState({ name: '金魚' })
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。