我想通过POST请求获取图像。我正在关注https://facebook.github.io/react-native/docs/images#network-requests-for-images
上的文档但是我不知道为什么它总是发送没有正文内容的GET请求。我的服务器需要使用请求主体来生成图像,并且传递请求参数太长了。
<Image
source={{
uri: 'https://bar-chart-api.herokuapp.com/plot.png',
method: 'POST',
headers: {
Pragma: 'no-cache',
'Content-Type': 'application/json',
Accept: 'image/png'
},
body: JSON.stringify(this._extractRoundsForChart(this.state.rounds)),
}}
style={{width: 400, height: 200}}
/>
请帮助我,谢谢!