You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am using Breeze latest version configured to use OData adaptor:
breeze.config.initializeAdapterInstance('dataService', "OData", true);
The OData is using the datajs to get data from a web service Odata V3. Everything works well on all browsers, except IE11 and Edge, where we get the error:
"Can't execute code from a freed script"
Using only datajs (OData.read), works well also on IE11 and Edge, but if Breeze uses it, not working anymore. After more research, the error happens here:
breeze.debug.js (15422,18)
return __map(nodes, function (node) {
if (query == null && node.entityAspect) {
// don't bother merging a result from a save that was not returned from the server.
if (node.entityAspect.entityState.isDeleted()) {
that.entityManager.detachEntity(node);
} else {
node.entityAspect.acceptChanges();
}
return node;
}
Looks like the error comes from an httpResponse used in there, but in the network console everything looks OK, on DataJs part everything looks OK, but something happens afterwards.
The text was updated successfully, but these errors were encountered:
I am using Breeze latest version configured to use OData adaptor:
breeze.config.initializeAdapterInstance('dataService', "OData", true);
The OData is using the datajs to get data from a web service Odata V3. Everything works well on all browsers, except IE11 and Edge, where we get the error:
Using only datajs (OData.read), works well also on IE11 and Edge, but if Breeze uses it, not working anymore. After more research, the error happens here:
Looks like the error comes from an httpResponse used in there, but in the network console everything looks OK, on DataJs part everything looks OK, but something happens afterwards.
The text was updated successfully, but these errors were encountered: