Angular - 访问 XMLHttpRequest - 单元测试中的 CORS 问题

问题描述 投票:0回答:1

我在角度测试的规范文件中遇到了这个 CORS 问题。不知道如何解决这个问题。问题发生在第二行

beforeEach(() => {
    fixture = TestBed.createComponent(FhcComponent); //ISSUE HAPPENS HERE
    component = fixture.componentInstance;
    fixture.detectChanges();
  });

这是我在控制台中看到的完整错误。

从源“http://localhost:9876”访问“ng:///FhcComponent/%C9%B5fac.js”处的 XMLHttpRequest 已被 CORS 策略阻止:仅协议方案支持跨源请求:http 、数据、chrome、chrome 扩展、chrome 不受信任、https。

angular karma-jasmine
1个回答
0
投票

错误消息可能会产生误导。

如果您访问模板中未初始化的某些属性,则可能会发生此错误。

© www.soinside.com 2019 - 2024. All rights reserved.