Are there any naming conventions or standards for Url parameters to be followed. I generally use camel casing like userId or itemNumber. As i am about to start of a new project, i was searching whether there is anything for this, and could not find anything. I am not looking at this from a perspective of language or framework but more as a general web standard.
|
1
|
|
|
|
|
|
I recommend reading Cool URI's Don't Change by Tim Berners-Lee for an insight into this question. If you're using parameters in your URI, it might be better to rewrite them to reflect what the data actually means. So instead of having the following:
You'd have
It creates a more obvious data structure, and means that if you change the platform architecture, your URI's don't change. Without the above structure,
becomes
which means all the links on your site are now broken. In general, you should only use query strings when the user could reasonably expect the data they're retrieving to be generated, e.g. with a search. If you're using a query string to retrieve an unchanging resource from a database, then use URL-rewriting. |
|||
|
|
|
|
There are no standards that I'm aware of. Just be mindful of IE's URL length limit of 2,083 characters. |
||
|
|
|
|
Never heard about conventions on query string. Like you, I generally use Camel casing. |
||
|
|
|
|
Like the other answers I've not heard about any conventions. The only "standard" I would adhere to is to use the more search engine friendly practice of using a URL rewriter. |
||
|
|
|
|
There are no standards that I know of, and case shouldn't matter. However within your application (website), you should stick to your own standards. For your own sanity if nothing else. |
||
|
|
|
|
I use lowercase. Depending on the technology you use, QS is either threated as case-sensitive (eg. PHP) or not (eg. ASP). Using lowercase avoids possible confusion. |
||
|
|
|
|
Standard for URI are defined by RFC2396. You probably only want to follow a particular convention on your parameters based on the framework you use.
I would say that cleanliness and user-friendliness are laudable goals to strive for when presenting URLs. |
||
|
