could you please tell me how to send data from one view to another view .Actually I have one input field and button on my main screen .I want to send data of input text from one screen to another screen on button click .I want to send text of input field from one view to another view .I am able to move one screen to another on button click but I am not able to send input text on another screen
here is my code http://plnkr.co/edit/pz9NBhtq4fX0m6N4wDqB?p=preview
events: {
'click #click':'moveTonext'
},
moveTonext: function(){
new Router().navigate('secondView', { trigger: true });
},