【node.js】报错Cannot mix different versions of joi schemas解决方法

(❁´◡`❁)您的点赞评论收藏⭐是作者创作的最大动力

前言

使用第三方包@hapi/joi 定义表单验证规则,然后利用postman检测到返回错误为:
Cannot mix different versions of joi schemas

【node.js】报错Cannot mix different versions of joi schemas解决方法_第1张图片

报错原因:

@hapi/joi 第三方包不可用,需要下载其它版本;

解决办法:

运行如下命令重新安装第三方包

npm i joi

将将导入的@hapi/joi 更改为 joi

const joi = require("@hapi/joi")
改为:
const joi = require("joi")

(❁´◡`❁)您的点赞评论收藏⭐是作者创作的最大动力

你可能感兴趣的:(各种报错问题解决方案,node.js,前端)