ajaxThe background returns jsonp format, no problem!
ringa_lee
Ask your backend
Find the developer corresponding to the server and confirm whether the interface is HTTP GET or POST
Do not use the post method to request static resources.
Chrome should have told you the problem. Click on your request address and check the contents of the request and response. Generally, the response will tell you the result of the server-side response.
The 405 status code is usually method not allowed. It can be solved by asking the server whether it is get, post or put.
Ask your backend
Find the developer corresponding to the server and confirm whether the interface is HTTP GET or POST
Do not use the post method to request static resources.
Chrome should have told you the problem. Click on your request address and check the contents of the request and response. Generally, the response will tell you the result of the server-side response.
The 405 status code is usually method not allowed. It can be solved by asking the server whether it is get, post or put.