Firefox控制台在HTTP 204响应中抛出“找不到元素”

时间:2015-11-14 14:17:10

标签: javascript angularjs firefox httpresponse http-status-code-204

一切确实有效,但我无法在firefox控制台中摆脱这个错误:

  

找不到元素

我正在向我的api发送HTTP请求:

$http({
    url: API_LOCATION + 'expenses/' + obj.expense.id + '/', 
    method: "DELETE",
}).then(function(response){
    if(response.status === 204) {
        var params = $location.search();
        params['alert-success'] = ALERTS.EXPENSE_DELETED;
        $location.search(params);
    }
    $route.reload();
});

和我的(django rest framework)api返回HTTP_204_NO_CONTENT状态

1 个答案:

答案 0 :(得分:11)

这是一个最近重新开启>的Firefox错误最近解决了:https://bugzilla.mozilla.org/show_bug.cgi?id=884693