import CheckoutIntents from 'checkout-intents'; const client = new CheckoutIntents({ apiKey: "RYE/staging-ec7a06d0ba5647ee824a", }); // Step 1: Create checkout intent + poll until awaiting confirmation const intent = await client.checkoutIntents.createAndPoll({ productUrl: "https://flybyjing.com/collections/shop/products/the-big-boi", quantity: 1, buyer: { firstName: "John", lastName: "Doe", email: "john.doe@example.com", phone: "212-333-2121", address1: "123 Main St", city: "New York", province: "NY", postalCode: "10001", country: "US", }, }); // Step 2: Review offer details (price, shipping, taxes) console.log("Offer:", intent.offer); // Step 3: Confirm with payment + poll until completed const completedIntent = await client.checkoutIntents.confirmAndPoll(intent.id, { paymentMethod: { type: "stripe_token", stripeToken: "tok_visa", }, }); // Step 4: Handle result if (completedIntent.state === "completed") { console.log("Order placed successfully!", completedIntent); } else if (completedIntent.state === "failed") { console.error("Order failed:", completedIntent.failureReason); } 吃柿子的禁忌有哪些?這2類人少吃為妙 跳至主要內容

吃柿子的禁忌有哪些?這2類人少吃為妙

 

吃柿子的禁忌有哪些?這2類人少吃為妙

吃柿子的禁忌有哪些?這2類人少吃為妙.jpg

 

柿子含有較多單寧酸,倘若於空腹時食用,並同時攝取蛋白質含量較高的牛奶及優酪乳等飲食,容易引發消化不良

由於單寧酸及蛋白質經胃的消化反應後,會因胃酸所提供的酸性環境,形成一種膠狀沉澱物,稱作鞣酸蛋白(又名為柿石),而此種沉澱物不易被腸胃道吸收,會在胃裡結塊,妨礙消化,引發便祕及其他腸胃道問題。

因此建議腸胃較差者應酌量食用。

建議每日最多攝取1顆拳頭大的柿子即可,以避免食用過量,造成腸胃不適;民眾在食用柿子前,不妨將具有高含量鞣酸及單寧酸的柿子皮去除,亦可減少腸胃刺激。

此外,因柿子也富含鉀離子,腎臟功能不佳的慢性腎衰竭及洗腎患者也應避免過量食用,否則可能會造成腎臟代謝負擔,使病況加重

留言

import CheckoutIntents from 'checkout-intents'; const client = new CheckoutIntents({ apiKey: "RYE/staging-ec7a06d0ba5647ee824a", }); // Step 1: Create checkout intent + poll until awaiting confirmation const intent = await client.checkoutIntents.createAndPoll({ productUrl: "https://flybyjing.com/collections/shop/products/the-big-boi", quantity: 1, buyer: { firstName: "John", lastName: "Doe", email: "john.doe@example.com", phone: "212-333-2121", address1: "123 Main St", city: "New York", province: "NY", postalCode: "10001", country: "US", }, }); // Step 2: Review offer details (price, shipping, taxes) console.log("Offer:", intent.offer); // Step 3: Confirm with payment + poll until completed const completedIntent = await client.checkoutIntents.confirmAndPoll(intent.id, { paymentMethod: { type: "stripe_token", stripeToken: "tok_visa", }, }); // Step 4: Handle result if (completedIntent.state === "completed") { console.log("Order placed successfully!", completedIntent); } else if (completedIntent.state === "failed") { console.error("Order failed:", completedIntent.failureReason); }