当前位置: 首页>>代码示例>>TypeScript>>正文


TypeScript NavParams.get方法代码示例

本文整理汇总了TypeScript中ionic-angular.NavParams.get方法的典型用法代码示例。如果您正苦于以下问题:TypeScript NavParams.get方法的具体用法?TypeScript NavParams.get怎么用?TypeScript NavParams.get使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在ionic-angular.NavParams的用法示例。


在下文中一共展示了NavParams.get方法的10个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。

示例1: ngOnInit

 async ngOnInit() {
   const cardName = this.navParams.get('cardName');
   this.cardConfig = await this.giftCardProvider.getCardConfig(cardName);
   await this.getCards();
   this.listenForUpdates();
 }
开发者ID:bitpay,项目名称:copay,代码行数:6,代码来源:purchased-cards.ts

示例2: ionViewDidLoad

 ionViewDidLoad() {
   console.log(this.navParams.get('id'));
 }
开发者ID:edu2act,项目名称:course-hybrid-app-development,代码行数:3,代码来源:b.ts

示例3: constructor

    constructor(private settingsDelegate: CoreSettingsDelegate, platorm: Platform, navParams: NavParams) {
        this.isIOS = platorm.is('ios');

        this.selectedPage = navParams.get('page') || false;
    }
开发者ID:SATS-Seminary,项目名称:moodlemobile2,代码行数:5,代码来源:list.ts

示例4: ngOnInit

 ngOnInit() {
   this.filter = this.navParams.get('filter');
 }
开发者ID:Darkmarus,项目名称:blog,代码行数:3,代码来源:filter.ts

示例5: constructor

  constructor(public nav: NavController, public navParams: NavParams, public bookmarkService: BookmarkService) {
    // If we navigated to this page, we will have an item available as a nav param
    // this.post = navParams.get('post');
        this.post = navParams.get('post');

}
开发者ID:michaeldemille,项目名称:SouthernUtahCares,代码行数:6,代码来源:givingpost.ts

示例6: constructor

 constructor(private randomService: RandomService, public navCtrl: NavController, public navParams: NavParams) {
   this.showResult = false;
   this.pageName = navParams.get('name');
   this.items = navParams.get('items');
   this.selectedItem = this.randomService.random(this.items);
 }
开发者ID:mcuongvu28,项目名称:Japlingo,代码行数:6,代码来源:character-random.ts

示例7: constructor

 constructor(navParams: NavParams) {
     this.module = navParams.get('module') || {};
     this.courseId = navParams.get('courseId');
     this.title = this.module.name;
 }
开发者ID:SATS-Seminary,项目名称:moodlemobile2,代码行数:5,代码来源:index.ts

示例8: getLink

 getLink(){
   this.embedID = this.params.get('vidID');
   this.vidLink = `https://www.youtube.com/embed/${this.embedID}`;
 }
开发者ID:tutsplus,项目名称:get-started-with-ionic-2,代码行数:4,代码来源:singlevideo.ts

示例9: constructor

 constructor(public navCtrl: NavController, public navParams: NavParams, public http: Http, public events: Events) {
     this.items = this.navParams.get('sources'); 
     var d = this.navParams.get('date');
     this.updateConfDate(d);
 }
开发者ID:stevenluong,项目名称:apollo,代码行数:5,代码来源:configuration.ts

示例10: constructor

 constructor(private navCtrl: NavController, private navParams: NavParams) {
   this.global = this.navParams.get('global');
 }
开发者ID:RemaxThailand,项目名称:RemaxMobile,代码行数:3,代码来源:system-config.ts


注:本文中的ionic-angular.NavParams.get方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。