我想通过从列表中随机选择一个索引来生成文件。这样可行。但是,我偶尔会收到错误:ERR_FILE_NOT_FOUND
。
我尝试使用try.. catch
语句,但是并没有达到我想要的效果。
我不熟悉JavaScript,但是我知道在python中我可以做类似的事情:
while True:
# generate the image
try:
# do stuff
except Exception:
# do nothing so it regenerates an image
else:
break
这在JavaScript中不起作用,“ else”表示希望做出决定。