2012-08-03 58 views
2

我已經this tutorial安裝dajaxice:dajax.core導入錯誤的/無模塊命名

  • 複製的文件夾 「dajaxice」(從檔案)到項目文件夾。
  • 添加的所有更改setting.py & urls.py
  • 接下來加入行模板:

    {% load dajaxice_templatetags %} 
    {% dajaxice_js_import %} 
    
  • 創建ajax.py在項目文件夾

  • 代碼從ajax.py

    from django.utils import simplejson 
    from dajaxice.core import dajaxice_functions 
    
    @dajaxice_register 
    def example1(request): 
        return simplejson.dumps({'message': 'hello world'}) 
    
    dajaxice_functions.register(example1) 
    
  • 代碼從.js文件:

    $("#id_submit").click(function(){ 
        Dajaxice.theproject.example1(callback_example); 
        console.log("test clicked"); 
        return false; }); 
    
  • 當我重新啓動在第一次請求的瀏覽器的項目我:

    ImportError at/No module named dajax.core 
    Request Method: GET 
    Request URL: http:// 127.0.0.1:8000/ 
    Django Version: 1.4 
    Exception Type: ImportError 
    Exception Value:  No module named dajax.core 
    Exception Location: C:\Python27\lib\importlib\__init__.py in import_module, line 37 
    Python Executable: C:\Python27\python.exe 
    Python Version: 2.7.3 
    Python Path:  ['E:\\Projects\\py\\sites\\theproject', 'C:\\Windows\\system32\\python27.zip', 'C:\\Python27\\DLLs', 'C:\\Python27\\lib', 'C:\\Python27\\lib\\plat-win', 'C:\\Python27\\lib\\lib-tk', 'C:\\Python27', 'C:\\Python27\\lib\\site-packages', 'C:\\Python27\\lib\\site-packages\\PIL'] 
    Server time: Fri, 3 Aug 2012 14:50:03 +0300 
    

任何想法?在init.py

回答

0

負載ajax.py(主應用程序的)

相關問題