今天学习了一下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进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。