在控制器中处理 HTTP 标头和状态代码
我目前定期从数据库轮询数据。对于后端,我使用 C# 和 MVC2 作为框架。因为我现在以 10 秒的间隔获取数据,所以我想在控制器的后端实现某种条件,该条件将解析 http 标头,并且如果自上次获取后尚未修改数据,则不会再次获取数据。我不太确定我会如何处理这个问题。大家有什么好的建议吗?!
问候
Im currently polling data with from an Database with an regular interval. For the backend I'm using C# and MVC2 as framework. As I'm fetching data with an interval of 10 seconds now I would like to in the backend in my controller implement some kind of conditional that will parse the http header and not fetch the data again if it has not been modified since last fetch. I'm not really sure how I would go about with this. Anyone have any good suggestions?!
Regards
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为什么要为此搞乱 http 标头呢?只需使用 OutputCache 属性 - 这正是它的用途。
Why mess around with http headers for this? Just use the OutputCache attribute - this is exactly what it's for.