3招緩解胃脹氣
3招緩解胃脹氣

許多人有腸胃脹氣症狀、或是胃痛胃不舒服時,就會吞胃藥解決。
常見的消脹氣治療藥物依據其作用方式可分為幾種:
1. 消除脹氣的藥物
改變腸胃道中氣泡的表面張力,讓氣泡凝聚在一起、排出體外。
2. 增加腸道蠕動藥物
此類藥物能夠促進腸道和胃部的蠕動,增加氣體排出,
3. 益生菌
乳酸菌可以使腸內菌叢恢復正常、抑制害菌的生長,
攝取益生菌整治腸胃算是從根源解決問題,因此它需要一段時間,
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);
}
留言