根据链接规则获取七牛云图床的图片
根据链接规则获取七牛云的图床内的图片 前提:已经使用了自动运行的py脚本每天爬取bing每日美图至七牛云,存储七牛云的链接规则为时间格式,例:https://imgbing.lonuslan.lan/{timestamp},其中{timestamp}的格式为20200524(year + month + day),实际链接如:https://imgbing.lonuslan.com/20210604 后续访问该链接的图床只需要通过一定的规则生成随机时间就可以使用了 代码示例如下: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> </head> <body> <button class="test" onclick="test()">点击获取图片</button> <div id="showImg" style="margin: 0 auto....