标签: angularjs http http-status-code-304
当服务器发送304时,浏览器自动处理它并且$ http接收状态200.我想自己处理它,所以我不会重新加载我的视图 内容没有改变。
我想做这样的事情:
$http.get("api/endpoint").then(function(response){ if(response.status != 304) //update view with response.data } else{ // do nothing } });
答案 0 :(得分:0)
这似乎是一个更普遍的问题。 这是关于此here