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
共有 0 条评论