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.
有没有办法在流中为异步场景注入 1 到 2 秒的暂停,并且除非它休息几秒钟,否则立即尝试获取值将失败?
think与您要暂停的秒数一起使用。在这个例子中,我们 GET /first_thing,等待两秒钟,然后 GET /second_thing。
think
- name: "Thinkflow" flow: - get: url: "/first_thing" - think: 2 - get: url: "/second_thing"