如何在反应原生中传递参数以及获取请求。这可能吗?
答案 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