vote up 0 vote down star

I'm trying to learn some basic ajax using Django. My simple project is an app that randomly selects a Prize from the available prizes in the database, decrements its quantity, and returns prize.name to the page.

I'm using jQuery's $.ajax method to pull this off. The the only thing that's running is the error function defined in my $.ajax call, but the error message says nothing but "error". I'm new to ajax, so I'm probably overlooking something obvious. Here's the relevant code:

Model

class Prize(models.Model):
    name = models.CharField(max_length=50)
    quantity = models.IntegerField(default=0)

    def __unicode__(self):
	    return self.name


URLConf

urlpatterns = patterns('',
    (r'^get_prize/$', 'app.views.get_prize' ),
)


View

def get_prize(request):
    prizes = Prize.objects.filter(quantity__gt=0)
    to_return = {}

    if prizes:
    	    rand = random.randrange(len(prizes))
	    prize = prizes[rand]
	    prize.quantity -= 1
	    prize.save()


	    to_return['prize'] = prize.name
	    data = simplejson.dumps(to_return)

	    return HttpResponse(data, mimetype='application/json')


    else:
	    to_return['msg'] = "That's all the prizes.  No more."
	    data = simplejson.dumps(to_return)

	    return HttpResponse(data, mimetype='application/json')


Template

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>User's Conference Prize Randomizer</title>
<link rel="stylesheet" type="text/css" href="/static-media/style.css" />
<script type="text/javascript" src="/static-media/jquery-1.2.6.min.js"></script>

<script type="text/javascript">
	var get_prize = function() {
		var args = { 
			type: "GET",
			url: "get_prize",
			dataType: "json",
			success: done,
			error: function(response,error_string,e){
				alert( "Error: " + response.responseText + " " + error_string ); 
				for (i in e){
					alert(i);
				}
			}
		};

		$.ajax(args);
	};

	var done = function(response) {
		if(response)	{
			alert(response);
		}

		else {
			alert("Something boo-booed");
		}
	};

	$(document).ready(function() {
	   $("#start").click(get_prize);
	 });
</script>

</head >

<body>
        <p><a href="" id='start'>Get Prize</a>, this link isn't working how I'd like.</p>

</body>

flag

Have you tried going to the get_prize url directly to see the response? A good tool for debugging ajax is the firefox extension firebug. You can use it's console to view any ajax requests being made and see what is being sent and received. If you could find out what the response if from the url it would be easier to help you. – defrex May 11 at 17:05

3 Answers

vote up 0 vote down

This is not a direct answer to your question, but have you looked at the jQuery taconite plugin? It makes most AJAXy stuff trivial to do. More on malup's taconite page. While you're at it, checkout his other excellent plugins.

link|flag
vote up 0 vote down check

Good grief. I had just left out return false in the function that made the ajax call. Way to go n00b. :0.

link|flag
vote up 0 vote down

This isn't exactly related to your question, but if you're trying to fetch a random object from the database, you could do this instead:

prize = Prize.objects.filter(quantity__gt=0).order_by('?')[:1]
if prize:
    prize = prize[0]

# Using a slice prevents an exception if the query returns an empty queryset.
# If you're not a fan of LBYL, you could wrap the query in a try...except block instead:

try:
    prize = Prize.objects.filter(quantity__gt=0).order_by('?')[0]
except IndexError:
    # No more prizes pal...done, fini.
link|flag

Your Answer

Get an OpenID
or

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