typescript - How can i pass the selected data objects to another page -


when click add button

hello, how can pass selected object data when want select more 1 , pass page , put list. how can achieve ? the product parameter passed page how can pass parameter when select more 1 object ?

add products array first

productlist = [] any[];  productlist.push(product);  this.navctrl.push(orderpage,{ productlist: productlist}); 

Comments

Popular posts from this blog

python - Operations inside variables -

Generic Map Parameter java -

arrays - What causes a java.lang.ArrayIndexOutOfBoundsException and how do I prevent it? -