Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私は初心者で、ajax.py がどこにあるのか知りたいですか? dajaxのドキュメントでは、その情報を提供していません。'/static'フォルダに入っていますか?
'/static'
libdjangoプロジェクト内のようなフォルダーを作成することをお勧めmanage.pyし__init__.pyますajax.py.
lib
manage.py
__init__.py
ajax.py
今、あなたはできる
from lib import ajax
あなたのコードで、それは動作するはずです..
また、karthikによって示唆されている..
manage.py で
import sys, os sys.path.append(os.path.abspath(".")+"/lib")