On Tue, 2007-12-11 at 15:18 -0800, crybaby wrote: > I have a view which allows users to upload pictures and add tags, > description to them. I have to update two tables: post and img > > If I want to do this by REST, how do you do this? Is REST only suited > for manipulating one resource(one table) at a time?
REST doesn't know anything about tables. It's a style of resource addressing. A "resource" here means something you can talk to over HTTP .That may or may not have a one-to-one correspondence with something in the backend or persistence layer of your application. For anything even vaguely complex -- a blog post, a travel booking, a recipe, an address book entry-- it will refer to more than one object, so your case is typical, rather than unusual. Essentially, here, your "resource" is supported by a single view. That view can do whatever it needs to in order to store the information supplied (or retrieve the information requested). It may well have to split up the input and store it into multiple models. That's what views are for: executing any Python code you need to. Regards, Malcolm -- The sooner you fall behind, the more time you'll have to catch up. http://www.pointy-stick.com/blog/ --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---