Request to log in to the service and redirect to another address and return 302?

Click to log in to call the logged-in service http://localhost:9093/login, and redirect to http://162.25.1.80:5000/qryData, redirect to whether the address port must be a local localhost:9093?. How to achieve redirection in vue?

Sep.16,2021

  1. redirection means that the backend service returns the http status code to inform the browser that the redirection is completed by the browser.
  2. the redirect address can be arbitrary.
  3. has nothing to do with vue .

window.location.href =' http://162.25.1.80:5000/qryData' is not allowed?

Menu