2

如果第一次连接失败,如何告诉httpie重试n次?

4

1 回答 1

2

我不认为 httpie 内置了这个功能,但由于它只是一个命令行工具,你可以在你使用 httpie 的任何 shell 中使用某种重试方法......例如,在类似的bash东西中:

# Retry the 5 times command if returned exit code is not 0
for i in {1..5}; do http httpie.orgs && break || echo "Retrying..."; done
于 2017-05-15T00:08:53.837 回答