Ionic hidden field data sending to other view

hi, I am trying to send hidden input value to other view like 1.html to 2.html input field
but its not working …please help me anyone with the controllerjs…i coudnt do that

You can use NavController for this:

this.navCtrl.push(UserPage,{
      first_name: "Developer",
      phone: "56456",
       .....
    });