0
我想製作一個簡單的python腳本在我的服務器上運行。它應該做的是根據收到的請求接收請求並返回值。如何讀取使用Python接收的請求值?
我想以類似http://example.com/thescript.py?first=3&second=4
的方式訪問腳本。
並使腳本讀取first
和second
並使用這些值完成作業。
我該怎麼做?
我想製作一個簡單的python腳本在我的服務器上運行。它應該做的是根據收到的請求接收請求並返回值。如何讀取使用Python接收的請求值?
我想以類似http://example.com/thescript.py?first=3&second=4
的方式訪問腳本。
並使腳本讀取first
和second
並使用這些值完成作業。
我該怎麼做?
最簡單的方法是使用Flask
:
from flask import Flask, request, render_template
app = Flask(__name__)
@app.route('/', methods=['GET', 'POST'])
def index():
first = request.args.get('first')
second = request.args.get('second')
return render_template('index.html', first=first, second=second)
if __name__ == '__main__':
app.run()
而且模板:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
First: {{ first }}
<br />
Second: {{ second }}
</body>
</html>
這個代碼將只打印所提供的兩個參數。