使用Angular 6,为什么http.get()无法检索我的静态数据?

时间:2018-06-25 18:55:27

标签: angular https cors

我在运行SSL和CORS软件包的Linux上安装了Node.js服务器。我可以使用HTTPS协议在Firefox的Windows中访问我的网站:

https://<host-name>:<port>/

但是,在我的Angular代码中,使用:

http.get("https://<host-name>:<port>/test/data")

我仅收到此错误消息*Array.from is not a function*.,在查看开发人员工具屏幕时,我实际上没有看到浏览器进行HTTPS调用。

如果我运行服务器并使用本地浏览器,则一切正常!

这可能是polyfills问题,另一个CORS问题或其他问题吗?

这是我的服务的一部分:

...
import { HttpClient, HttpHeaders } from '@angular/common/http';
import { Observable, of } from 'rxjs';
...
export class ObtainData
{
    private val: any;
    private obsvbl: Observable<any>;
    private url = 'https://<host-name>:<port>/test/data';

    constructor(private http: HttpClient);

    getData(): Observable<any>
    {
        this.obsvbl = this.http.get<any>(this.url);

        this.obsvbl.subscribe((data: any) =>
                              {
                                  console.log("data is: " + data.val);
                                  // 'val' is a string contained in
                                  // a JSON structure.

                                  this.val = data;
                              },
                              err => console.log("Err is: " + err.message),
                              () => console.log("Done!"));

        return this.obsvbl;
    }
}

我使用以下命令进行构建:

ng build --aot --base-href=/testing-area/

我不能剪切/粘贴我的整个堆栈轨迹,但是我将在这里输入尽可能多的内容:

"Err is: Array.from is not a function" (main.js:290)
"ERROR" TypeError: a[getSymbolIterator(...)] is not a function (main.js:393)
 stack trace:
 areIterablesEqual@https://<host-name>:<port>/testing-area/vendor.js:13061:9
 devModeEqual@https://<host-name>:<port>/testing-area/vendor.js:12990:9
 {more stuff}
"ERROR CONTEXT" Object(view: Object, nodeIndex: 4, nodeDef: Object, elDef: 
                       Object, elView: Object) (main.js:393)
"ERROR" TypeError: a[getSymbolIterator(...)] is not a function (main.js:393)
 stack trace:
 {same stuff}

1 个答案:

答案 0 :(得分:1)

要解决此问题,我刚刚将Firefox浏览器从版本31升级到版本38.5.2。一旦这样做并重新加载我的应用程序,就不会出现任何错误(以前在我的问题中列出)。而且,我的静态数据终于按预期到达。