1. 程式人生 > >解決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}),