如何从flask网页在python控制台中打印数据?

时间:2018-04-03 06:26:00

标签: html python-3.x flask ninja

我使用的代码是:

我的HTML代码:

<html>
   <body>

      <form action = "http://localhost:5000/login" method = "post">
         <p>Enter Name:</p>
         <p><input type = "text" name = "nm" /></p>
         <p><input type = "submit" value = "submit" /></p>
      </form>

   </body>
</html>

我的python代码:

from flask import Flask, redirect, url_for, request

app = Flask(__name__)

@app.route('/success/<name>')

def success(name):

    return 'welcome %s' % name

@app.route('/login',methods = ['POST', 'GET'])

 def login():

    if request.method == 'POST':

        user = request.form['nm']    

        return redirect(url_for('success',name = user))

    else:

        user = request.args.get('nm')

        return redirect(url_for('success',name = user))

if __name__ == '__main__':

       app.run(debug = True)

如何在flask网页的python控制台中打印数据?

1 个答案:

答案 0 :(得分:0)

使用print()表示您想要在控制台中打印的内容。