【发布时间】:2020-03-02 17:28:18
【问题描述】:
编辑:
我是混合开发的新手。我提到了这个Sample 来使用 ionic2 解析列表视图中的 json。但是当我运行代码时,我只能在浏览器中看到空白屏幕。
下面我已经发布了代码。请检查:
pages.ts:
import { Component } from '@angular/core';
import {Http} from '@angular/http';
import { NavController } from 'ionic-angular';
import 'rxjs/add/operator/toPromise';
@Component({
selector: 'page-home',
templateUrl: 'pages.html'
})
export class SlidingPage {
public items:any;
constructor(public navCtrl: NavController,public http: Http) {
this.http = http;
this.http.get("http://api.randomuser.me/?results=10")
.subscribe(data =>{
// console.log(data['_body']);
// this.items=JSON.parse(data['_body']).results;//Bind data to items object
this.items = data.json();
},error=>{
console.log(error);// Error getting the data
} );
}
buttonClick(event){
console.log("button clicked");
console.log(event);
}
itemClicked(event,itemData){
console.log("item clicked");
console.log(event);
console.log(itemData);
}
}
Pages.html:
<ion-header>
<ion-navbar>
<ion-title>
List View
</ion-title>
</ion-navbar>
</ion-header>
<ion-content padding>
<ion-list>
<ion-item *ngFor="let item of items" (click)="itemClicked($event,item)">
<ion-avatar item-left>
<img src="{{item.picture.thumbnail}}">
</ion-avatar>
<h2>{{item.name.first | uppercase }}</h2>
<h3>{{item.gender}}</h3>
<ion-icon *ngIf="item.gender=='female'" name="woman" item-left></ion-icon>
<ion-icon *ngIf="item.gender=='male'" name="man" item-left></ion-icon>
<ion-icon name="heart" item-right></ion-icon>
<button ion-button item-right color="danger" (click)="buttonClick($event)">Button</button>
</ion-item>
</ion-list>
</ion-content>
我在 控制台 中遇到了这个问题:
localhost/:1 XMLHttpRequest cannot load http://api.randomuser.me/?results=10. Redirect from 'http://api.randomuser.me/?results=10' to 'https://api.randomuser.me/?results=10' has been blocked by CORS policy: No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'http://localhost:8100' is therefore not allowed access.
感谢任何帮助。
【问题讨论】:
-
控制台有错误吗?
-
ionic serve的命令行是否有编译错误? -
@suraj sorry。现在只有我知道控制台。以前我认为是命令提示符。我已经发布了控制台问题。
-
这是一个cors问题,尝试设置代理..stackoverflow.com/a/37779476/4826457这个错误只发生在浏览器中..不在设备中
标签: typescript ionic2 angular2-routing hybrid-mobile-app