昨天分享如何從API伺服器透過axios發送API請求得到資料顯示在FlatList中
今天緊接著介紹如何讓使用者將餐點放進購物車
1.找到每一筆餐點的按鈕並撰寫監聽函式
Math.random()
函式生成一個唯一ID,這樣可以保證每個餐點在購物車中的唯一性。 const data = {
id: Math.random().toString(36).substr(2, 9),
M_Name: item.name,
M_DT: new Date().toISOString(),
M_ImgSrc: item.image,
OrderType: item.orderType,
CIdx: item.categoryId,
Price: item.price
};