抱歉,我在stackoverflow内搜索并搜索,但没有找到有用的信息。 我有一个烧瓶应用, python版本2.6 烧瓶版本0.9
它的应用程序层次结构就像
application/
__init__.py
app.py
hello/
__init__.py
view.py
templates/
hello.html
两个文件 init .py都为空
app.py
-----------------------
from flask import Flask
from flup.server.fcgi import WSGIServer
from hello.view import hello
app = Flask(__name__)
app.debug = True
app.register_blueprint(hello, url_prefix='/hello')
if __name__ == '__main__':
WSGIServer(app, bindAddress='/tmp/app.sock').run()
view.py
-----------------------
import os
from flask import Blueprint, render_template, abort
from jinja2 import TemplateNotFound
hello = Blueprint('hello', __name__, template_folder='templates')
@hello.route('/')
def get_index():
try:
return render_template('hello.html')
except TemplateNotFound:
abort(404)
hello.html
-----------------------
<!DOCTYPE html>
<html>
<head>
{% block head %}
<meta charset="utf-8">
{% endblock %}
</head>
<body>
<div>
{% block body %}
<h1><a href="{{ url_for('hello.get_index') }}">Click Me</a></h1>
{% endblock %}
</div>
</body>
</html>
当我输入localhost:8080/hello
时,它工作正常,但如果单击html中的链接则会出错。我发现其网址值为href="/hello/hello/"
(它应该是/hello/
吗?)。
我知道hello.get_index映射到/hello/
,但不知道第一个hello/
来自。{1}}。任何提示都表示赞赏。
答案 0 :(得分:2)
您是否尝试在注册蓝图时删除url_prefix参数?例如,如果您更改以下内容该怎么办:
app.register_blueprint(hello, url_prefix='/hello')
到
app.register_blueprint(hello)