-1

我需要从 SAPUI5 到我的 SAP 网关的手动 OData 调用(没有数据绑定)。

为此,我使用以下代码:

oModel.read("/ZTestSet"),  
    null,null,false, function(oData, oResponse){
       alert("success");
    },
    function(oError ){
       alert("error");
} 

我已经在 SAP 系统上调试过了。我接到电话并填写et_entityset了所需的数据。

问题是,不会触发任何函数作为回调。既不是成功也不是错误(我在网关或其他人上找不到任何错误)。

浏览器开发者工具中的响应:

HEADERS:
     
Request Method:GET
Status Code:200 OK
     
RESPONSE HEADERS:
cache-control:no-store, no-cache
Connection:keep-alive
content-encoding:gzip
Content-Length:827
Content-Type:application/atom+xml; charset=utf-8
dataserviceversion:2.0
Date:Tue, 05 Apr 2016 12:08:34 GMT
Proxy-Connection:keep-alive
sap-metadata-last-modified:Tue, 05 Apr 2016 10:06:59 GMT

REQUEST HEADERS:
Accept:application/atom+xml,application/atomsvc+xml,application/xml
Accept-Encoding:gzip, deflate, sdch
Accept-Language:en-US
Cache-Control:no-cache
DataServiceVersion:2.0

RESPONSE:
<feed xmlns="http://www.w3.org/2005/Atom" 
 xmlns:m="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata" xmlns:d="http://schemas.microsoft.com/ado/2007/08/dataservices" xml:base="<<ADDRESS>>">
  <id><<ADDRESS>></id>
  <title type="text"><<FUNCTION>></title>
  <updated>2016-04-05T12:08:34Z</updated>
  <author>
    <name />
  </author>
  <<LIST OF ENTRIES>>
</feed>

看起来是一个成功的调用。

4

2 回答 2

0

将下面的调试器行放在成功和错误调用中,看看它是否在浏览器中触发。oModel.read 是一个异步调用,这意味着它不会等待响应,并且仅在收到来自服务器的响应后才触发成功或错误方法。因此,如果您正在等待,那么它可能看起来什么都没有发生。

              debugger;
于 2016-04-05T18:29:48.880 回答
0

多么愚蠢的错误。

我关闭了 URL 后的括号。它应该在最后一个参数之后自然关闭。在我的情况下,在错误功能之后。

正确的代码:

oModel.read("/ZTestSet", null, null, false, function(oData, oResponse) {
  alert("success");
}, function(oError){
  alert("error");
});
于 2016-04-06T06:14:05.730 回答