React Native fetch() 函数给出 SyntaxError: Unexpected end of JSON input

时间:2021-06-30 11:10:11

标签: react-native post fetch-api

enter image description here请告诉我我在这里做错了什么。

附言当使用 POSTMAN 调用 api 时,它会使用与 RAW/JSON 输入相同的数据

代码如下:`

fetch(url,{
            headers:{
                "ContentType": "text/json"
            },
            method:"POST",
            body:{"apiKey": "12345", "clientId": "254455",
             "callerId": "02656708557","CallingAgentNumber": "09547142951",
             "CalledPartyNumber": "0891879567", "callType":"2"}
        }).then(res=>res.json()).then(result=>console.log(result)).catch(err=>console.log(err));

`

0 个答案:

没有答案