2017-10-27 9 views
1

urlの内容に続いて、/ assets/dataに格納されたJSONファイルを使用して動的メニュー項目を実装します。メニューは、保存されたJSONファイルで正常に動作しています。今、Salesforce APIからリアルタイムで同じフォーマットのJSONを動的に取得し、そのコンテンツを表示する必要があります。 誰かが私がここで必要とする変更を提案してもらえますか? getMainMenu()メソッドのjsonパスを実際のSaleforce APIに置き換える必要がありますか?以下は Ionic App内のエンドポイントからリアルタイムJSONを取得する方法

は、データservice.ts

import { Injectable } from '@angular/core'; 
 
import { Http, Response } from '@angular/http'; 
 
import 'rxjs/add/operator/map'; 
 

 
/* 
 
    Generated class for the DataServiceProvider provider. 
 

 
    See https://angular.io/guide/dependency-injection for more info on providers 
 
    and Angular DI. 
 
*/ 
 
@Injectable() 
 
export class DataServiceProvider { 
 

 
    constructor(public http: Http) { 
 
    console.log('Hello DataServiceProvider Provider'); 
 
    } 
 

 
    getMainMenu(){ 
 
    return this.http.get('assets/data/mainmenu.json') 
 
    .map((response:Response)=>response.json().Categories); 
 
    } 
 

 
}

であり、あなたが必要とするように見えます

import { Component, ViewChild } from '@angular/core'; 
 
import { Nav, Platform } from 'ionic-angular'; 
 
import { StatusBar } from '@ionic-native/status-bar'; 
 
import { SplashScreen } from '@ionic-native/splash-screen'; 
 

 
import { HomePage } from '../pages/home/home'; 
 
import { ListPage } from '../pages/list/list'; 
 

 
import { DataServiceProvider } from '../providers/data-service/data-service' 
 

 
@Component({ 
 
    templateUrl: 'app.html' 
 
}) 
 
export class MyApp { 
 
    @ViewChild(Nav) nav: Nav; 
 

 
    rootPage: any = HomePage; 
 

 
    pages: any[]; //Array<{title: string, component: any}>; 
 
    mainmenu: any[]; 
 
    
 
    constructor(public platform: Platform, public statusBar: StatusBar, public splashScreen: SplashScreen, public dataService: DataServiceProvider) { 
 
    this.initializeApp(); 
 

 
    this.dataService.getMainMenu().subscribe((Response)=>{ 
 
     this.mainmenu = Response; 
 
     console.log(this.mainmenu); 
 
    }); 
 

 
    // used for an example of ngFor and navigation 
 
    this.pages = [ 
 
     { title: 'Home', component: HomePage }, 
 
     { title: 'List', component: ListPage } 
 
    ]; 
 

 
    } 
 

 
    initializeApp() { 
 
    this.platform.ready().then(() => { 
 
     // Okay, so the platform is ready and our plugins are available. 
 
     // Here you can do any higher level native things you might need. 
 
     this.statusBar.styleDefault(); 
 
     this.splashScreen.hide(); 
 
    }); 
 
    } 
 

 
    openPage(page) { 
 
    // Reset the content nav to have just this page 
 
    // we wouldn't want the back button to show in this scenario 
 
    this.nav.setRoot(page.component); 
 
    } 
 

 
    toggleSection(i) { 
 
    this.mainmenu[i].open = !this.mainmenu[i].open; 
 
    }; 
 

 
    toggleItem(i,j) { 
 
    this.mainmenu[i].SubCategories[j].open = !this.mainmenu[i].SubCategories[j].open; 
 
    }; 
 
}

答えて

0

app.component.ts UへgetMainMenuメソッドのurlをapiのメソッドにpdateします。認証ヘッダーの追加など、いくつかの変更が必要な場合がありますが、APIからのデータがassetsフォルダに格納されているものと同じであれば、コンポーネントはどこからデータが得られるかを気にする必要はありません。

関連する問題