Django, accesses the same interface multiple times, and the result of the first request will overwrite the result of the second request.

due to the long response time of an interface, when the result of the first method access is not returned, the user makes a request again.
the result of the second request is returned first, and the return of the first result will directly hinder the result of the second time.
what should I do if I only want to get the result of the second request?

Jul.13,2021
Menu