This is less a technical question, more a "am i doing this in the right way" question.
I have several models defined
class Style(models.Model):
tag_xml = models.TextField()
image = models.ImageField(upload_to="styles")
user = models.ForeignKey(User)
uploaded = models.DateField()
class StyleMatch(models.Model):
style = models.ForeignKey(Style)
item = models.ForeignKey(FashionItem)
they can't be populated via html forms simply due to the nature of the task, so in order to populate them I have a html page with jquery and lots of event functions and other javascript goodies. When the save button is clicked I call .ajax() and pass all of the collected variables
var saveRequest= $.ajax({
url: "/save_style/",
type: "POST",
data: "selection="+s+"&user="+user+"&src="+image_src,
dataType: "text"
});
My save_style view then saves the values into the model
def save_style(request):
if request.method == 'POST':
selection = request.POST['selection'].rsplit("|")
user = request.POST['user']
src = request.POST['src']
f = open(MEDIA_ROOT+src)
image_file = File(f)
u = User.objects.get(id=user)
style = Style(tag_xml = "",
image = image_file,
user = u,
uploaded = date.today())
style.save()
for s in selection:
if (s != ''):
match = FashionItem.objects.get(id=s)
styleMatch = StyleMatch(style = style,
item = match)
styleMatch.save()
i = StyleMatch.objects.filter(style=style)
items = FashionItem.objects.filter(id__in=i)
return render_to_response('style_saved.html', dict(image=src, items=items, media_url = MEDIA_URL), context_instance=RequestContext(request))
After doing this I really want to go to a success page and display the records I have just added to the model, however if I use render_to_response and pass back the model details I have to rebuild the entire page in javascript, it seems better to redirect to a new template, but if I use HttpResponseRedirect a) I can't pass back values and b) it doesn't appear to be redirecting quite right (I think because the post is originating from my javascript).
So finally my questions
- Is this really how I should be doing this? The django doc doesn't really seem to cover these slightly more complicated areas, so I'm a little unsure.
- Should I be using render_to_response or HttpResponseRedirect above? Or possibly a third option I don't know about.
Any suggestions appreciated.
FYI I know the code above is not ideal i.e. missing validation, comments ... etc, its simply been provided for demonstration purposes. Feel free to point out any serious issues though.