解决react-native fetch请求报错JSON parse error

前端之家收集整理的这篇文章主要介绍了解决react-native fetch请求报错JSON parse error前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

需要在fetch请求中加入Origin属性~~

例如:fetch(classifyURL,{
method: "POST",
headers: {
"Content-Type": "application/json",
},
Origin: "xxxx",

body: JSON.stringify({"id": 1}),

原文链接:https://www.f2er.com/react/306881.html

猜你在找的React相关文章