处理请求流时出错。 指定的JSON文本无效| XSO数据

2020-08-18 06:44发布

         点击此处--->   EasySAP.com群内免费提供SAP练习系统(在群公告中)

加入QQ群:457200227(SAP S4 HANA技术交流) 群内免费提供SAP练习系统(在群公告中)


我能够通过邮递员客户端对XSODATA进行张贴,但是它在SAPUI5应用程序中将无法工作。

以下是邮递员

下面是我的代码。 我正在使用sap.ui.model.odata.ODataModel

with content-type":" application/json; charset = utf-8"});

(71.0 kB)

         点击此处--->   EasySAP.com群内免费提供SAP练习系统(在群公告中)

加入QQ群:457200227(SAP S4 HANA技术交流) 群内免费提供SAP练习系统(在群公告中)


我能够通过邮递员客户端对XSODATA进行张贴,但是它在SAPUI5应用程序中将无法工作。

以下是邮递员

下面是我的代码。 我正在使用sap.ui.model.odata.ODataModel

with content-type":" application/json; charset = utf-8"});

(71.0 kB)
付费偷看设置
发送
1条回答
土豆飞人
1楼-- · 2020-08-18 07:50

将JSON对象作为变量传递,以确保其格式正确。

 var oEntry = {};
 oEntry.perno =" 123456789";
 oEntry.SID =" BHAT";
 oEntry.tdate =" Apr 018";
 oEntry.vecnumber =" Ino3x";

 sap.ui.getCore()。getModel()。create('/Mileage',oEntry,null,
    功能(oResponse){
        console.log("创建成功");
        console.log(oResponse);
    },
    函数(oError){
        console.log("创建失败");
        console.log(oError);
     }
 ); 

一周热门 更多>