家长用熬煮的蔬菜水冲奶粉导致新生儿中毒,值得家长深思

大家好,我是小雨,今天我又看到了让人特别痛心的一幕。

大家好,我是小雨,今天我又看到了让人特别痛心的一幕。

相信对于每个小家庭来说,新生儿的到来都是特别值得高兴的事。然而很多新手宝爸宝妈对于如何喂养孩子是一件很头疼的事。

这不四川妇女儿童医院一个月内就接诊了两名新生儿中毒病例。孩子生下来因为某种原因直接用奶粉喂养的,可是呢家长觉得喝奶粉上火,所以家长就想到煮点蔬菜水给宝宝喝就可以起到降火的效果。

可是家长考虑到孩子还小直接喂肯定是不喝的,所以就用熬煮好的蔬菜水用来冲奶粉给宝宝喝。熬一顿就喝一天,连续喝了两三天宝宝脸色发紫,呼吸急促。等家长送宝宝到医院的时候,宝宝的脸色都紫成了茄子,诊断的结果是高铁血红蛋白达到了致死范围!

家长用熬煮的蔬菜水冲奶粉导致新生儿中毒,值得家长深思

其中有一个还是早产儿,常规体检的时候被医生检查发现异常,及时送去了就医。如果晚一点后果不堪设想。医生表示用熬煮的蔬菜水冲奶粉,经过放置一天的蔬菜水中的硝酸盐类物质在微生物作用下还原成了剧毒的亚硝酸盐!

所以家长们新生儿的肠胃功能不比成人儿童,亚硝酸盐中毒风险更加高,对于新生儿喂养要合理配奶,科学喂养。

最后祝每位宝宝都健健康康的成长,一生平安[比心][比心]

家长用熬煮的蔬菜水冲奶粉导致新生儿中毒,值得家长深思

(如有侵权联系删)

内容来源网络,如有侵权,联系删除,本文地址:https://www.230890.com/zhan/20156.html

(0)

相关推荐

  • 钉钉报警接入代码

    @Service@Slf4jpublic class DingTalkUtil { @Value("${dingTalk.robot.url}") private String robotUrl; @Value("${dingTalk.robot.me}") private String me; // 钉钉密钥 @Value("${dingTalk.robot.secret}") private String secret; @Value("${dingTalk.enabled}") private Boolean enabled; private OkHttpClient okHttpClient; private static final ObjectMapper objectMapper = new ObjectMapper(); private static final MediaType jsonMediaType = MediaType.parse("application/json"); @PostConstruct public void init() { ExecutorService executorService = new ThreadPoolExecutor( 1, 5, 1, TimeUnit.MINUTES, new ArrayBlockingQueue<>(100), ThreadFactoryBuilder.create().setNamePrefix("dingTalk-").build(), new ThreadPoolExecutor.CallerRunsPolicy() ); Dispatcher dispatcher = new Dispatcher(executorService); dispatcher.setMaxRequests(5); dispatcher.setMaxRequestsPerHost(5); okHttpClient = new OkHttpClient.Builder() .readTimeout(Duration.ofSeconds(1)) .connectTimeout(Duration.ofSeconds(1)) .callTimeout(Duration.ofSeconds(1)) .writeTimeout(Duration.ofSeconds(1)) .dispatcher(dispatcher) .build(); } /** * 异步发送钉钉机器人文本消息. */ public void sendTextMessage(String content) { doSendTextMessage(content, textMessage -> { }); } /** * 异步发送文本消息并@自己. */ public void sendTextMessageWithAtMe(String content) { doSendTextMessage(content, textMessage -> textMessage.getAt().getAtMobiles().add(me)); } /** * 异步发送文本消息并@所有人. */ public void sendTextMessageWithAtAll(String content) { doSendTextMessage(content, textMessage -> textMessage.getAt().setAtAll(true)); } private void doSendTextMessage(String content, Consumer<TextMessage> messageConfigurator) { if (!enabled) { return; } if (StringUtils.isBlank(content)) { throw new IllegalArgumentException("文本消息内容不能为空"); } TextMessage textMessage = new TextMessage(); textMessage.setText(new TextMessage.Content(content)); messageConfigurator.accept(textMessage); long timestamp = System.currentTimeMillis(); String sign = sign(timestamp); try { Request request = new Request.Builder() .url((robotUrl + "×tamp=" + timestamp + "&sign=" + sign)) .post(RequestBody.create(objectMapper.writeValueAsString(textMessage), jsonMediaType)) .build(); Call call = okHttpClient.newCall(request); call.enqueue(new Callback() { @Override public void onFailure(@NotNull Call call, @NotNull IOException e) { log.error("发送钉钉消息失败, 请求: {}.", call, e); } @Override public void onResponse(@NotNull Call call, @NotNull Response response) { ResponseBody responseBody = response.body(); log.debug("钉钉发送成功, call: {}, resp: {}.", call.request().body(), responseBody); if (responseBody != null) responseBody.close(); } }); } catch (JsonProcessingException e) { throw ExceptionUtil.wrapRuntime(e); } } private String sign(long timestamp) { final String seed = (timestamp + "\n" + secret); try { Mac mac = Mac.getInstance("HmacSHA256"); mac.init(new SecretKeySpec(secret.getBytes(StandardCharsets.UTF_8), "HmacSHA256")); byte[] result = mac.doFinal(seed.getBytes(StandardCharsets.UTF_8)); return URLEncoder.encode(Base64.getEncoder().encodeToString(result), StandardCharsets.UTF_8.displayName()); } catch (NoSuchAlgorithmException | InvalidKeyException | UnsupportedEncodingException e) { throw ExceptionUtil.wrapRuntime(e); } } @Getter private static class TextMessage { private final String msgtype = "text"; @Setter private Content text; private final At at = new At(); @Data @AllArgsConstructor private static class Content { private String content; } private static class At { @Setter private boolean isAtAll = false; @Getter private final List<String> atMobiles = new LinkedList<>(); // 不能删除,否则会导致生成的json字段名是atAll, 导致@所有人不生效 public boolean getIsAtAll() { return isAtAll; } } }}

    科技 2021年11月18日
  • 保卫细胞作用,保卫细胞含有什么

    免疫力是我们身体的免疫系统共同战斗的能力,而这个系统的核心就是免疫细胞。一旦这些免疫细胞减少了,免疫系统就失去“保卫”能力,身体就更容易生病人负责“吞咽”有害的病菌和病毒。 免疫细...

    生活 2021年12月17日
  • 秋天过后,孩子们食欲不振。如何调整自己的饮食?

    炎热的夏天正在悄然结束,秋天即将来临。 夏天热,容易犯困,食欲不振,孩子也不例外。 入秋后天气干燥,早晚温差大。有些孩子会感到不适,甚至食欲会变差。 这是调整孩子饮食的好时机,及时...

    生活 2021年11月5日
  • 艾灸所有知识大全,艾灸知识大全

    一、什么是灸

    生活 2021年11月9日
  • 一天中最适合学习的4个黄金时间段!提醒孩子,别辜负好时光,孩子的黄金记忆时间段

    生活中,我们总能听到孩子抱怨,并不是自己不想学习,而是没有效率,这个时候,我们要做的就是及时告诉孩子,那是因为没有抓住那些黄金学习时段,如果抓住了,将会取得事半功倍的效果!

    生活 2021年11月6日