Axios post表单urlencoded请求application/x-www-form-urlencoded

问题描述 投票:0回答:1

解决完成感谢大家帮助我

node.js post axios
1个回答
0
投票

我无法使用真正的 REST 服务器进行测试,但我可以建议这段代码。

它基于您的图像和代码。

const resp = await axios.post(URI,
            new URLSearchParams({
                'condition': 'condition',
                'nextButton': 'Effectuer une demande de rendez vous' 
            }),
            {
                headers:
                {
                    'Content-Type': 'application/x-www-form-urlencoded'
                }
            })
© www.soinside.com 2019 - 2024. All rights reserved.