django导入自定义模块
2018-09-01 本文已影响0人
风寒夜末
django导入自定义模块
自定义模块cust.py位于应用aptest目录下
1.编辑settings.py
from aptest import cust
2.编辑views.py
from cust import pc #从cust.py中导入pc类
然后在view中可以直接调用pc.property
django导入自定义模块
自定义模块cust.py位于应用aptest目录下
1.编辑settings.py
from aptest import cust
2.编辑views.py
from cust import pc #从cust.py中导入pc类
然后在view中可以直接调用pc.property