如何在反应原生中传递url查询参数?

时间:2018-01-18 10:09:13

标签: react-native parameter-passing fetch

如何在反应原生中传递参数以及获取请求。这可能吗?

1 个答案:

答案 0 :(得分:0)

fetch('https://mywebsite.com/endpoint/', {
  method: 'POST',
  headers: {
    Accept: 'application/json',
    'Content-Type': 'application/json',
  },
  body: JSON.stringify({
    firstParam: 'yourValue',
    secondParam: 'yourOtherValue',
  }),
});

详细了解Making Request