Loading...
简述问题事情是这样的,后端这边使用了Gin框架,并且做了跨域处理,解决方式使用了我的这篇文章:https://blog.kakkk.net/archives/44/然而,在请求的时候,发现前端控制台报跨域错误:Access to XMLHttpRequest at 'http://localhost:8080/api/v1/admin/xxx/' from origin 'http://12...
最近遇到个需求,用到了这个,简单记录下import React, { useEffect } from 'React'; function Test (props) { useEffect(() => { console.log(props.location); }, [props.location]) } export default Test;好了水完了。