typescript IF_05_06_NavigationService_TS

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了typescript IF_05_06_NavigationService_TS相关的知识,希望对你有一定的参考价值。

import { Injectable } from '@angular/core';

@Injectable({
  providedIn: 'root'
})
export class NavigationService {

  navParams: any;

  constructor() { }

  setData(data: any) {
    this.navParams = data;
  }

  getData() {
    return this.navParams;
  }

}

以上是关于typescript IF_05_06_NavigationService_TS的主要内容,如果未能解决你的问题,请参考以下文章

typescript IF_05_05_Office_GoBack_TS

typescript IF_06_04_home.page.ts_2

typescript IF_06_03_home.page.ts_1

typescript IF_06_03_app.module.ts

typescript IF_04_06_Radio_Binding_TS

typescript IF_05_13_Routing_Tabs.ts