python 多个参数不为空校验方法

在实际开发中经常需要对前端传递的多个参数进行不为空校验,可以使用python提供的all()函数

if not all([arg1, arg2, arg3]): # 当 arg1, arg2, arg3都不为空时all函数返回true

return jsonify(errno=RET.PARAMERR, errmsg=u"参数不完整!")

以上这篇python 多个参数不为空校验方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。

以上是 python 多个参数不为空校验方法 的全部内容, 来源链接: utcz.com/z/360625.html

回到顶部