Forms
posts (2)
- The Layers of HTTP in the Browser: From fetch() to QUIC3/9
Headers and Body: Metadata vs Representation
A body is bytes, not JSON. Headers say how to read it and steer caching, cookies and CORS, even though the application does not fully control them.
- Ways of Talking to a Backend: From HTML Forms to GraphQL1/6
HTML Forms: Backend Communication Without JavaScript
A form is not an API helper. The browser itself serializes the controls, builds the request and treats the response as a new document.