英文:
Checking if API server is under maintenance
问题
我有一个Flask应用程序,其中包含多个API端点。我想要添加一个新的端点,用于检查服务器状态并返回一条消息(例如,服务器正在维护中或可用)。
我的问题是,我如何知道服务器是否正在维护中,并在本地测试此路由?
英文:
I have a flask app with several API endpoints. I want to add a new endpoint that checks the server status and return a message (e.g. server is under maintenance or available).
My question is how do I know that the server is under maintenance and test this route on local?
答案1
得分: 2
HTTP API 响应以有意义的状态码和状态消息回应。特别地:
> Response 接口的 ok 只读属性包含一个布尔值,表示响应是否成功(状态在范围 200-299 内)。
if(response.ok){
API 存活!
}
英文:
Any HTTP API responds with meaningful Status Codes and Status Messages. In particular:
> The ok read-only property of the Response interface contains a Boolean
> stating whether the response was successful (status in the range
> 200-299) or not.
if(response.ok){
The API is alive!
}
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论