三默网为您带来有关“axios发送请求会多发送一次“Request Method: OPTIONS“请求解决方法”的文章内容,供您阅读参考。

axios发送请求会多发送一次“Request Method: OPTIONS“请求解决方法

2023-01-17 15:35:21

设置请求头:

header: {
		'Content-Type': 'application/json;charset=UTF-8'
	}

改为

header: {
		'Content-Type': 'application/x-www-form-urlencoded;charset=UTF-8'
	}