Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
フラスコビューからURLパラメータを取得しようとしています:
www.domain.com/?f=x**2
Flaskビューでx**2から取得するにはどうすればよいですか?url
x**2
url
を使用してクエリ文字列変数を取得できます
request.args.get('myParam')
また
request.args['myParam']
myParam受信しようとしているクエリ文字列の変数はどこにありますか。
myParam