Simple dajaxice example
Explanation
In this example we will request a message from python and display it in an alert box.
ajax.py
from django.utils import simplejson
from dajaxice.decorators import dajaxice_register
@dajaxice_register
def dajaxice_example(request):
return simplejson.dumps({'message':'Hello from Python!'})
html
javascript
function my_callback(data){
alert('Error');
}

Examples
Download
Documentation
Bugs