对于角色是加载服务器缓存的端点,HTTP 响应代码应该是什么?
What should the HTTP response code be for an endpoint whose role is to load a server cache?
我需要创建一个在调用时加载服务器缓存的端点(例如“POST cache/load”),但我不希望该端点加载已经加载的缓存.因此,我想在我的回答中区分以下两种情况:
- “我加载了缓存,一切正常”
- “缓存已加载,一切正常”
现在的问题是,什么是合适的 HTTP 响应代码?
我目前在加载缓存时使用 201,如果缓存已加载则使用 200。
Now the question is, what are the appropriate HTTP response codes ?
200 for both. That's all that the components in the transfer of documents over a network 域名需要知道。
实施的具体细节属于响应的正文。
我需要创建一个在调用时加载服务器缓存的端点(例如“POST cache/load”),但我不希望该端点加载已经加载的缓存.因此,我想在我的回答中区分以下两种情况:
- “我加载了缓存,一切正常”
- “缓存已加载,一切正常”
现在的问题是,什么是合适的 HTTP 响应代码?
我目前在加载缓存时使用 201,如果缓存已加载则使用 200。
Now the question is, what are the appropriate HTTP response codes ?
200 for both. That's all that the components in the transfer of documents over a network 域名需要知道。
实施的具体细节属于响应的正文。