当前位置:  开发笔记 > 编程语言 > 正文

我如何在离子2中将数据从带有表单的模式传递到主页?

如何解决《我如何在离子2中将数据从带有表单的模式传递到主页?》经验,为你挑选了1个好方法。



1> 小智..:

在你的HTML中:

City Country United States United Kingdom

在你的add.ts文件中:

export class AddPage {
    form : any; //Declare the form object to be bound to your html
  constructor(public viewCtrl: ViewController, public navCtrl: NavController, public navParams: NavParams) {}

CloseModal() {

  this.viewCtrl.dismiss(this.form); //Send back the form object when closeModal is called
 }
}

在你的家里:

addWeather() {
    let addWeatherModal = this.modalCtrl.create(AddPage);

    addWeatherModal.present();
    addWeatherModal.onDidDismiss(data=>{ //This is a listener which wil get the data passed from modal when the modal's view controller is dismissed
        console.log("Data =>", data) //This will log the form entered by user in add modal.
    })
  }

推荐阅读
云聪京初瑞子_617
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有