React Native:使用Linking api设置标头

时间:2017-01-04 19:40:35

标签: javascript reactjs react-native

如何在React Native中设置setRequestHeader?如下所示:

_.forEach()

我在Linking api doc中找不到任何信息。 https://facebook.github.io/react-native/docs/linking.html

2 个答案:

答案 0 :(得分:3)

向网站发送标题请求,您需要http(s)请求,而不是2个应用之间的链接。

正如其他答案所述,链接api没有标题。使用http(s)获取远程地址时,确实有标题

https://facebook.github.io/react-native/docs/network.html

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

答案 1 :(得分:1)

Linking API用于在设备上的应用之间进行链接。在应用之间进行链接时,没有标题概念。请改用URL中的查询参数。