应用程序错误:与服务器的连接失败。 (文件:///android_asset/www/index.html)

时间:2017-08-14 13:30:09

标签: ionic2

从我的app.component.ts文件调用我的Web服务时,我在Android模拟器中运行应用程序时出现以下错误。有人可以提供解决方案吗?

enter image description here

在app.component.ts的ngOnInit()生命周期钩子中我正在从Web服务类访问数据

app.component.ts(节选)

<% a = true %>
<% if a == true%>
  body { background-color: white }
<% else %>
  body { background-color: black }
<% end %>

以下是我正在进行REST调用的Web服务类摘录:

我-mobile.dataservice(节选)

ngOnInit()
  {

    this.myDataService.openWebMwthod()
         .subscribe((response)=>{
            this.datas = response;
            JSON.stringify(this.datas);
            alert("here"+this.datas);

            if(this.datas == null || this.datas == "")
            {
              this.nav.setRoot(this.accessDeniedPage, {showFooter : false});
            }
            else
            {
              this.nav.setRoot(this.homePage, {showFooter : false});
            }
        });  

  }

1 个答案:

答案 0 :(得分:2)

只需将此代码添加到config.xml

即可
<preference name="loadUrlTimeoutValue" value="700000" />