Flask系列之:获取url路径中?后面参数的值

Flask系列之:获取url路径中?后面参数的值
一、获取url路径中?后面参数的值二、主函数

http://10.128.235.112:9999/encryption?password=nio123456!A获取url路径中?后面参数password的值
一、获取url路径中?后面参数的值
password = request.args.get(“password”,True)使用request.args.get获取url路径中?后面参数的值
index.py
from flask import Blueprint, request, jsonify
#自己写的加密解密工具类
from passwdPush import decrypt,encrypt
import logging

#指定index蓝图前缀
index = Blueprint('index',__name__)

lo

Flask系列之:获取url路径中?后面参数的值最先出现在Python成神之路

版权声明:
作者:Mr李
链接:https://www.techfm.club/p/25716.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>