我们在遗留项目中使用 webcomponents,我们有一个问题,zone.js 修补了所有 ajax 调用,这非常糟糕,因为由于项目限制,我们没有通过 webcomponent 进行任何 ajax 调用。
我知道建议在 webcomponents 中禁用 zone.js,例如
platformBrowserDynamic()
.bootstrapModule(
AppModule, { ngZone: 'noop' })
.catch(err => console.log(err));
但我们不想这样做,因为我们的 web 组件非常复杂,我们不想手动进行更改检测。
有没有办法只通过 zone.js 禁用 ajax 修补?