口感粗糙的食物,膳食纤维才高吗?
膳食纤维分为可溶性和不溶性膳食纤维,可溶性膳食纤维口感细腻,易于吸收能减缓食物消化速度,排出多余肠道废物;不可溶性膳食纤维口感粗糙,刺激肠道蠕动。
选择含有低聚果糖的天然膳食纤维补充剂,改善肠道功能,补充人体每日所需。
0 人喜欢
There is no comment, let's add the first one.
弦圈热门内容
[antd: Message] You are calling notice in render which will break in React 18 concurrent mode. Please trigger in effect instead.
I'm getting this error when using MessageWarning: [antd: Message] You are calling notice in render which will break in React 18 concurrent mode. Please trigger in effect instead.Here is my code:import { message } from 'antd'; export default function Page() { const [messageApi, contextHolder] = message.useMessage(); const res = await fetch("/api/...", { method: "POST", }); if (!res.ok) { messageApi.error("Error! Fail to login!"); } return ( <Home> ... </Home> ) }