Я новичок в Ioni c, и я планирую использовать ion-select для фильтрации / выбора статуса заказа.
Мой ion-select выглядит следующим образом не работает.
Как я могу применить данные JSON к своим вариантам выбора ионов?
Вот моя страница. Ts
constructor(private dataService: DataService, private http: HttpClient) {
this.data = '';
this.error = '';
}
//comment this if you gonna use api url
private prepareDataRequest(): Observable<any> { // <-- change return type here
// Define the data URL
const dataUrl = 'assets/data/data.json';
// Prepare the request
return this.http.get(dataUrl);
}
orders= [];
ionViewWillEnter() {
// Load the data
this.prepareDataRequest().subscribe( //comment this if you will use Api Url
//this.dataService.getRemoteData().subscribe(
data => {
// Takes data into in single Array and print
this.orders = data.output.Result.OrderTracker;
},
err => {
// Set the error information to display in the template
this.error = `An error occurred, the data could not be retrieved: Status: ${err.status}, Message: ${err.statusText}`;
}
);
}
Вот моя html
<ion-list>
<ion-item>
<ion-label>Status</ion-label>
<ion-select lines="full" multiple="true" cancelText="Cancel" okText="Okay" >
<ion-select-option value="processed">Order Processed</ion-select-option>
<ion-select-option value="received">Order Received</ion-select-option>
<ion-select-option value="pending">Order Pending</ion-select-option>
<ion-select-option value="cancelled">Order Cancelled</ion-select-option>
</ion-select>
</ion-item>
</ion-list>
<ng-container *ngIf="!error; else errorContent">
<p *ngFor="let order of orders; let i=index;">
{{ order?.ordernumber || '-' }} - {{order?.status || '' }} - {{order?.date || '' }} - {{order?.time || '' }}
<ion-button ion-button (click)="hide(i)">UPDATE</ion-button>
<ion-card *ngIf="currentDisplayIndex==i">
<ion-card-header>
<ion-card-title>UPDATE {{ order?.ordernumber || '-' }} </ion-card-title>
</ion-card-header>
<ion-card-content>
<ion-input type="text" placeholder="Enter Status"></ion-input>
<ion-input type="date" placeholder="Enter Date"></ion-input>
<ion-button>Submit</ion-button>
</ion-card-content>
</ion-card>
</p>
</ng-container>