Ionic 4 我如何接收 componentProps?

Ionic 4 how do I receive componentProps?

在 Ionic 4 中,我尝试使用 modalController 打开模式。我可以打开模式并发送 componentProps,但我不确定如何接收这些属性。

以下是我打开模态组件的方式:

async showUpsert() {
  this.modal = await this.modalController.create({
    component:UpsertComponent,
    componentProps: {test: "123"}
  });
  return await this.modal.present();
}

我的问题是;在实际模式中,如何将 test: "123" 放入变量中?

您可以在您需要的组件中使用输入组件交互获取这些值,例如:

import { Component } from '@angular/core';
import { ModalController } from '@ionic/angular';
import { TestComponent } from '../test/test.component';

@Component({
  selector: 'app-home',
  templateUrl: 'home.page.html',
  styleUrls: ['home.page.scss']
})
export class HomePage {
  constructor(public modalController: ModalController){}
  async presentModal() {
    const modal = await this.modalController.create({
      component: TestComponent,
      componentProps: { value: 123, otherValue: 234 }
    });
    return await modal.present();
  }
}

在带有 Input 的模态组件中,您可以采用这些参数:

import { Component, OnInit, Input } from '@angular/core';

@Component({
  selector: 'app-test',
  templateUrl: './test.component.html',
  styleUrls: ['./test.component.scss']
})
export class TestComponent implements OnInit {
  @Input("value") value;
  @Input() otherValue;
  constructor() { }

  ngOnInit() {
    //print 123
    console.log(this.value);
    //print 234
    console.log(this.otherValue);
  }
}

只需将以下内容添加到您的模式页面:

public test: string;

那么您可以使用以下方法进行测试:

console.log(this.test); // Output will be '123'

source

也可以使用Navparams获取componentProps的值

import { CommentModalPage } from '../comment-modal/comment-modal.page';
import { ModalController, IonContent } from '@ionic/angular';


constructor(public modalCtrl : ModalController) {  }

  async commentModal() {
      const modal = await this.modalCtrl.create({
        component: CommentModalPage,

        componentProps: { value: 'data'}
      });
      return await modal.present();
   }

在您的 commentModalPage 中,您只需导入 navprams 并从中获取值。

import { NavParams} from '@ionic/angular';

constructor(public navParams : NavParams) {  

              console.log(this.navParams.get('value'));

            }