如何使用react-redux

时间:2017-08-09 06:49:27

标签: reactjs redux fetch-api

我正在做一个多重复选框过滤器,我必须使用post方法向服务器发送一个对象。我如何使用fetch来做到这一点?我可以使用fetch发送数据吗?从服务器我必须收到一个筛选列表。 谢谢!

1 个答案:

答案 0 :(得分:4)

是的,您可以使用' POST'

指定抓取方法

示例代码来自https://facebook.github.io/react-native/docs/network.html

function getMoviesFromApiAsync() {
    return fetch('https://mywebsite.com/endpoint/', {
      method: 'POST',
      headers: {
        'Accept': 'application/json',
        'Content-Type': 'application/json',
      },
      body: JSON.stringify({
        firstParam: 'yourValue',
        secondParam: 'yourOtherValue',
      })
    }).then((response) => response.json())
      .then((responseJson) => {
        return responseJson.success;
      })
      .catch((error) => {
        console.error(error);
      });
  }