我需要axios
在我的React
应用程序中使用向 SOAP 端点发出请求。因此,我需要在请求中传递 xml 数据并在响应中接收 xml 数据。
我已经将 axios 帖子与 json 数据一起使用,但是如何将相同的内容用于 xml?PFB 与我使用的代码相同,但它不起作用。
JSON 发布请求:
var xmlData = <note>
<to>Tove</to>
<from>Jani</from>
<heading>Reminder</heading>
<body>Don't forget me this weekend!</body>
</note>
var config = {
headers: {'Content-Type': 'text/xml'}
};
axios.post('/save', xmlData, config);
如果您有这方面的经验,请分享,TIA。