Hacker News new | past | comments | ask | show | jobs | submit login

Hyperlink + query parameters were a way to provide interactivity (with a server roundtrip of course)

For example, sorting a table could be achieved by having the column headers be a link to the same url with ?sort_by={colname}

And then the server sees that and sorts and returns.

Same with "dynamic" number of input fields. When the add field link is clicked you reload with ?num_fields=2




To me that feels like a technicality. It’s the same experience you’d get with a button + JS except with more latency.


> Hyperlink + query parameters were a way to provide interactivity (with a server roundtrip of course)

Not if you want to be pedantic. At least, if you want to follow the rules, GET requests should never change visible state on the server.

So the interactivity would be limited to searching/filtering existing content, but you wouldn't be able to add new content.

For that, you'd need POST requests, i.e. buttons.


Cool comment, got me thinking a bit and I’d like clarity if you don’t mind.

Sorting in a GET request param doesn't alter the server's state. It only changes the data representation, not the underlying resources.

This fits "safe" method def (RFC 9110) https://www.rfc-editor.org/rfc/rfc9110.html#safe.methods

But I agree sorting feels like it’s doing “something”… which is where I got stuck thinking about this.

But are you saying that the client view state (example of the sorted data) should not be handled by the server via GET?

If that’s what your are thinking, I’d like to learn more on this rule.


Ah, sorry. No, I just left out sorting for brevity. Sorting the result of a query is a pure function of its parameters and the existing server state, so it would be perfectly valid to do server-side in a GET request.

But changing the "default" sort order of a resource (either by physically shuffling the rows on disk or by setting some server-side global variable) would not.

I think it's the difference between making a sorted copy of a list (while leaving the original list untouched) and inline-sorting the list.

Same applies to filtering.

Even storing the processed results in a cache does not validate idempotency, because from a client's POV, the behavior of the next request would be the same, whether the server calculates the result fresh or pulls it from the cache.

(Edit: Realized, I mixed up "idempotent" and "safe" methods there. I was talking about "safe" methods - but those are what applies to GET requests and what can be represented by a hyperlink)


GET requests always change state on the server because we have logs. Furthermore logs are often parsed by XMLparsers which are often error prone.


This is why idempotency is defined through visible state on the server. What happens on the server doesn't matter, but a GET request should not change the results of any subsequent future requests, as visible to the clients. E.g. adding or modifying a post or a blog entry via a GET request would break the rules.

(Nothing stops you in practice from ignoring that requirement, but it can lead to ugly surprises, such as a crawler triggering a mass deletion because it crawled the /delete links)


Yeah but that was also implemented as a button, right? input type="submit" would display a button in 1993 AFAIK. No javascript and acted like a hyperlink - but still a button.


The most noticeable difference back then (before JS and before CSS) was that browsers displayed very visibly the destination of links, while input buttons were totally opaque. We created buttons with images inside an a href tag to make styled (in photoshop) buttons that behaved like links and generated a GET request. We could add a query string. The only way to make a POST request was a button inside a form.


> Hyperlink + query parameters were a way to provide interactivity (with a server roundtrip of course)

No server processing needed: the page returned can be identical with an onload function that grabs the GET parameters and does the processing on the client to, for example, reorder the rows of a table.




Consider applying for YC's Summer 2025 batch! Applications are open till May 13

Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: