Если вы хотите поделиться общими функциями, вы можете использовать их в ajax.py конкретного приложения и импортировать их из других приложений или в корневой каталог и импортировать оттуда:
DJANGODIR / ajax.py:
from django.utils import simplejson
def helloworld(request, name, id):
return simplejson.dumps({'message':'hello %s' % name})
DJANGODIR / my_app / ajax.py:
from DJANGODIR.ajax import helloworld
from dajaxice.core import dajaxice_functions
dajaxice_functions.register(helloworld)