进行http调用时,Nativescript和angular 2 app会中断

时间:2016-08-16 18:06:37

标签: angular2-http angular2-nativescript

在更新到tns核心模块2.2.0和angular rc4(由telerik正式发布的版本)时,我的应用程序无法再对服务器进行http调用,我不断收到此错误

{{1}}

我一直在尝试在线查看更新的发布日志,看看是否有任何重大更改,但无济于事。有没有人有任何关于如何使用新的nativescript角度更新进行http调用的指针?

谢谢

2 个答案:

答案 0 :(得分:2)

我通过导入app.moudle.ts以下

来解决此问题
import {NativeScriptHttpModule} from 'nativescript-angular/http';

然后

 imports: [NativeScriptHttpModule]

答案 1 :(得分:1)

您需要在main.ts文件中使用此代码

import {Parse5DomAdapter} from '@angular/platform-server/src/parse5_adapter';

(<any>Parse5DomAdapter).prototype.getCookie = function (name) { return null; };