React Native - Fetch POST request is sending as GET request

后端 未结 11 1122
感情败类
感情败类 2020-12-16 14:52

I\'m having issues when using FETCH.

I am trying to make a POST request using FETCH in react-native.

    fetch(\"http://www.example.co.uk/login\", {
         


        
11条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2020-12-16 15:28

    I had the same kind of issue. You have to assign the object, not sure why.

    let options = {};

    options.body = formdata;

    options.header = header;

    options.method = 'post';

提交回复
热议问题