摘要:
首先想要实现的效果是:每隔1段时间,就去调用1个接口确认结果,直到接口返回的结果为true,停止调用 所以这里会用到python的定时器 先来了解最简单的定时器: python 定时器默认定时器只执行一次,第一个参数单位S,几秒后执行 改成以下可以执行多次 建立loopTime.py 这个程序的运行 阅读全文
摘要:
回调的英文定义: A callback is a function that is passed as an argument to another function and is executed after its parent function has completed。 字面上的理解,回调 阅读全文