Some browsers cache aggressively.
✅ Fix
fetch(url, {
method: 'POST',
cache: 'no-store'
});
Especially important for
-
forms
-
authentication
-
dynamic APIs
Daily micro-tips for C#, SQL, performance, and scalable backend engineering.
Some browsers cache aggressively.
fetch(url, {
method: 'POST',
cache: 'no-store'
});
Especially important for
forms
authentication
dynamic APIs