参考学习教程

参考教程, 10分开始

组件 css样式互不覆盖解决方法

第11分钟开始学习

child.css 改为 child.module.css 这样就可以实现模块化

跨域问题解决方法

跨域问题解决方法_10分开始

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11

function App() {
    useEffect(()=> {
        axios.get("http://www.abc.com/abc").then(res=> {
            console.log(res)
            
        })
        
    },[])
    
}

可以使用 http proxy 实现反向代理。