您的位置:首页技术文章
文章详情页

python - django的views.py引入模块失败

浏览:42日期:2022-06-28 16:29:42

问题描述

from django.shortcuts import renderfrom django.http import HttpResponsefrom django.template import Template, Contextfrom pic_fin import *

报错

No module named ’pic_fin’

pin_fin.py就放在和views.py同一个目录内。之前项目用的python2.7,项目没有报错。现在因为某些原因换成了 python3.5,然后就报错了。

问题解答

回答1:

试下换成

from . import pic_fin 或者from .pic_fic import *

标签: Python 编程
相关文章: