2020年10月17日

React 的函数组件和类组件中的props

摘要: React 的函数组件和类组件中的props 函数组件 函数组件中的props是一个对象直接作为函数的参数传入,在组件内容中可以直接用点语法使用props对象中的属性,代码如下: function Test1(props) { return( <div> The user is <b>{props. 阅读全文

posted @ 2020-10-17 21:36 漫思 阅读(2671) 评论(0) 推荐(0) 编辑

github提交代码时报husky错误

摘要: 如果做H5项目,一般都有一些好用的模板,提交代码到github的时候,可能会报这个错误 husky > pre-commit hook failed (add --no-verify to bypass) > git config --get-all user.name > git config - 阅读全文

posted @ 2020-10-17 15:07 漫思 阅读(790) 评论(0) 推荐(0) 编辑

Umi配置proxy解决跨域问题

摘要: 解决跨域需要在webpack配置proxy,umi将webpack配置保存在.umirc.js的配置文件中。在.umirc.js文件加上: proxy: { '/api': { target: 'http://localhost:9093', pathRewrite: { '^/api': '' } 阅读全文

posted @ 2020-10-17 14:48 漫思 阅读(9741) 评论(0) 推荐(0) 编辑

导航