GET http://localhost:3000/data/posts.json 431(请求头字段太大) 我收到上面提到的错误。我正在使用本地服务器“npm 服务器” (无 Xampp 或 WAMP)
JSON 文件从这里下载“ https://gorest.co.in/public-api/users?_format=json&access-token=UrX-V34IN7O-1TV0HEaVUCRUz65B9-ibL6M1 ” 我已经在本地服务器上下载了这个文件。
我的代码是:
const API = './data/posts.json';
componentDidMount(){ 获取(API) .then(response => response.text()) .then( (data) => { console.log("data - ", data) } ) }