2

我在这里写了简单的烧瓶应用程序:http: //flask.pocoo.org/docs/quickstart/它真的很简约,只有三个页面和登录表单。我在自己的电脑上运行这个应用程序。有时一天下来我会得到这个:

178.93.*.* - - [27/Jun/2013 07:28:45] code 400, message Bad HTTP/0.9 request type ('\x99L\xe6\x1f\x9a\xbb\x8d\xea\x1d\xfa\x96_\x8e\x88\xc1\xfc_q\x8d:h\x88\x12\xda\xcb\x1a4X\xa7\xe3;\x1e\x1a\xd1w')
178.93.*.* - - [27/Jun/2013 07:28:45] "�L�������_��_q�:h���4X��;�w ���|G�(+��g��(RhԱ����" 400 -

我的索引函数在这里:

@app.route('/', methods=['GET', 'POST'])
def index():
    if request.method == 'POST':

        if database.get_user(request.form['login']):
            session['username'] = request.form['login']
            return redirect(url_for('list_site'))

        elif request.form['login'] == app.config['USERNAME']:
            if request.form['password'] == app.config['PASSWORD']:
                session['logged_in_admin'] = True
                return redirect(url_for('admin_site'))

    return render_template('index.html')

有时服务器没有响应,我必须重新启动应用程序。有人能帮我吗?

4

0 回答 0