获取-POST请求变成GET请求-IOS React-Native

时间:2019-01-11 22:28:42

标签: ios react-native post xmlhttprequest fetch

我正在尝试使用ios(本机)中的发布请求使用一些必填字段发布数据。不幸的是,我的请求正在转换为GET请求。我是  获取输出为“无法获取abc / def”。

我也尝试在URL末尾添加斜杠,但没有用。

responseData:Response {类型:“默认”,状态:200,正常:true,statusText:未定义,标头:Headers,...}

enter code here

```let data = {
        method: 'post',
        body: JSON.stringify({
            app:'10003600',
            redirectReq:'false',
            extraParams:'{}',
        }),
        headers: new Headers({
            'Content-Type': 'application/x-www-form-urlencoded',
        })
    }
    const url="https://fake.com/abc/def";
    return fetch(url,data).then((response) => {
         return response.json;
    }).then(responseData=>{
        console.log(responseData);
    }).catch(function(error) {
        console.error(error);
    }).done();```

有人可以帮助我解决此问题吗?还是有其他方法可以实现这一目标。

0 个答案:

没有答案