有什么方法可以触发odata create回调,而无需批处理请求? 我使用此代码,但显然它不起作用,因为odata无法处理批处理请求。
this.getOwnerComponent().getModel("model1").create("/entity", updateEntry , {
success: function() {
sap.m.MessageBox.success("Registered.", {
title: "success",
initialFocus: null
});
},
error: function() {
sap.m.MessageBox.error("Error ", {
title: "Error",
initialFocus: null
});
}
});