这是我的项目结构:
myproject
myproject
__init__.py
static
templates
views
__init.py__
home.py
venv
myproject.wsgi
requirements.txt
setup.py
这是我的 __init__.py
:
from flask import Flask, request, Response, render_template
from myproject.views import home
app = Flask(__name__, static_folder="static", static_url_path='/static')
test_string = "Hello World!"
app.register_blueprint(home.home)
这是我的 views/home.py
:
from flask import Flask, request, Response, Blueprint
import json
import requests
from myproject import test_string
home = Blueprint('home', __name__)
@home.route('/', methods=['GET'])
def test():
return(test_string)
当我访问页面时,出现错误ImportError: cannot import name test_string
。 Python导入系统确实令人困惑,我不确定在这里做错了什么,但是我怀疑这是一个循环导入问题。
我该如何解决?
答案 0 :(得分:1)
尝试将__init__.py
行中的from myproject.views import home
行移动到test_string = "Hello World!"
之后。
这样,Python将找到test_string名称。
要了解循环导入,您必须“像解释器一样思考”,当您执行__init__.py
时,解释器将:
__init__.py
的第1行__init__.py
的第2行views/home.py
的第1行(仅从烧瓶中导入Blueprint
,因为这是唯一尚未导入的内容)views/home.py
的第2 + 3行(导入json和请求)views/home.py
的第4行__init__.py
中的他执行了什么并搜索名称test_string
在这里引发错误,因为他执行的事情不理解test_string
。如果您在执行test_string = "Hello World!"
之后将导入 后移,解释器将在名称空间中找到该名称。
这通常被认为是错误的设计,恕我直言,存储test_string的最佳位置是一个config.py
文件,该文件中不会从其他项目模块执行任何导入,从而避免了循环导入。