1

我正在使用 BreezeJS 和 Angular 来使用来自 SAP Netweaver 网关系统提供的 Restful OData 服务的数据。应用程序当前正在从服务中正确读取数据,包括元数据,并按预期将所有这些数据保存在 EntityManager 中。

但是,当我更改其中一个实体的状态并执行 saveChanges() 时,既不会调用成功回调也不会调用失败回调,而是显示控制台错误。

Uncaught TypeError: Cannot read property 'statusText' of undefined 

调用save的代码如下

$scope.doSave = function(){
    $scope.purchases[0].Requester = "Dave" ;
        $scope.items[0].Description = "New Description";
        if (!$scope._isSaving)
        {
            console.log("Saving!");
            $scope._isSaving = true;
            manager.saveChanges().then(function(data){
                console.log("Saved");
                console.log(data);
                $scope._isSaving = false;
            }, function(error){
                console.log(error); 
                $scope._isSaving = false;});
        }
}

其中 manager 是标准的 Breeze EntityManager。

代码在服务器上被缩小,因此很难调试,但这是在核心微风库之一中抛出的。

客户端正在向服务器执行 $batch POST 请求,服务器响应 202 Accepted,如下所示

--0DD0586DB234C0A3D0D530A25CD1C8400
Content-Type: multipart/mixed; boundary=0DD0586DB234C0A3D0D530A25CD1C8401
Content-Length:       519

--0DD0586DB234C0A3D0D530A25CD1C8401
Content-Type: application/http
Content-Length: 111
content-transfer-encoding: binary

HTTP/1.1 204 No Content
Content-Type: text/html
Content-Length: 0
dataserviceversion: 2.0
content-id: 1


--0DD0586DB234C0A3D0D530A25CD1C8401
Content-Type: application/http
Content-Length: 111
content-transfer-encoding: binary

HTTP/1.1 204 No Content
Content-Type: text/html
Content-Length: 0
dataserviceversion: 2.0
content-id: 2


--0DD0586DB234C0A3D0D530A25CD1C8401--

--0DD0586DB234C0A3D0D530A25CD1C8400--

我希望这是这里以前见过的东西!

4

1 回答 1

3

最后,这被证明是处理 OData 的 SAP Netweaver Gateway 的一个怪癖。它在不应该发送标头时发送标头,并将“Content-ID”标头作为 content-id 发送。

为了解决这些问题,我最终不得不在 datajs1.1.1 中的 readBatch 方法中添加行

if (response.statusCode >= 200 && response.statusCode <= 299) {
     partHandler(context.handlerContext).read(response,   context.handlerContext);
} else {
     // Keep track of failed responses and continue processing the batch.
     response = { message: "HTTP request failed", response: response };
}

if (response.statusCode >= 200 && response.statusCode <= 299) {
    if (response.statusCode != 204) 
        partHandler(context.handlerContext).read(response,   context.handlerContext);
} else {
     // Keep track of failed responses and continue processing the batch.
     response = { message: "HTTP request failed", response: response };
}

并从

var contentId = cr.headers["Content-ID"];

var contentId = cr.headers["content-id"];

这解决了问题并确保正确处理响应。

于 2014-04-29T10:50:33.743 回答