vote up 6 vote down star
1

In the path:

Format: http://mydomain.com/{category}/{subcategory}/{pageNumber}/{pageSize}

Example: http://mydomain.com/books/thriller/3/25

In the querystring:

Format: http://mydomain.com/{category}/{subcategory}? pageNumber={pageNumber}&pageSize={pageSize}

Example: http://mydomain.com/books/thriller?pageNumber=3&pageSize=25

I like having everything on the path, but my problem with that is that while it is obvious (or at least somewhat obvious) what "books" and "thriller" are in first example, the "3" and "25" seem pretty arbitrary by contrast.

Is there a canonical method for determining what goes where in MVC, or is it really just up to the dev?

flag

5 Answers

vote up 14 vote down check

I prefer things like pagenumbers to be in the querystring variables. I think there's a difference in descriptiveness between

http://mydomain.com/books/thriller?pagesize=50&page=4

and

http://mydomain.com/books/thriller/50/4

The point (to me) of having clean url's is for them to be more descriptive and readable, and I find the first example to be just that.

One interesting point made byJohnRudolfLewis is:

One rule of thumb that I follow is that if the argument is required, consider using the path, if the argument is optional, always use querystring arguments.

link|flag
That pretty much covers my opinion as well. – Harper Shelby Jan 12 at 20:31
+1 Agreed, that is the best option. – ocdecio Jan 12 at 20:35
vote up 3 vote down

Well, it's obviously up to you. But, you're designing a RESTful interface that's supposed to be human readable. The querystring is much better in that regard. Otherwise you're looking at two numbers that could really be anything. And who's going to remember the order?

link|flag
vote up 4 vote down

One rule of thumb that I follow is that if the argument is required, consider using the path, if the argument is optional, always use querystring arguments.

Overall, I'd stick to whatever makes the url look more readable.

This site puts it in the querystring: http://stackoverflow.com/questions?page=2&pagesize=30

link|flag
vote up 0 vote down

It is pretty much up to the dev. I would say put the pageSize in the URL.

link|flag
vote up 1 vote down

Is there a canonical method for determining what goes where in MVC, or is it really just up to the dev?

It's up to you.

MVC is about the organization/flow of your server-side code and seperating the view from the business layer, not so much about query parameters.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.