javascript - Axios PATCH request is not ajax

one text

Solution:

My suspicion is that the ajax method is looking for the header often used on ajax requests, HTTP_X_REQUESTED_WITH. axios probably doesn't set that header, but you can do it manually if you like.

Source