2010-09-05 26 views

回答

1

如果你想分享常用的功能,你可以讓他們eiter在specififc應用的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) 
相關問題