8 lines
204 B
Python
8 lines
204 B
Python
|
|
from django.utils import simplejson
|
||
|
|
from dajaxice.decorators import dajaxice_register
|
||
|
|
|
||
|
|
@dajaxice_register
|
||
|
|
|
||
|
|
def dajaxice_example(request):
|
||
|
|
return simplejson.dumps({'message':'Hello from Python!'})
|
||
|
|
|