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.
我拍摄了告诉您构建状态的代码图像,并将其以 html 格式放在我的网站上。所以,现在它看起来像 img src="http://codeship..../> 问题是它不刷新。我需要它自动调用图像的链接并每 5 分钟刷新一次。
一个简单的解决方法是添加一个元标记以每 5 分钟(300 秒)刷新一次页面:
<html> <head> <title>Codeship Status Page</title> <meta http-equiv=”refresh” content=”300" > </head> <body> ... <img src="http://codeship...."/> ... </body> </html>