module.exports = jwt报错
来源:1-1 导学
Wuhk
2023-05-15
小慕老师
我这module.exports = jwt报错,帮看看是什么原因?
版本如下
"dependencies": {
“body-parser”: “^1.20.2”,
“boom”: “^7.3.0”,
“cors”: “^2.8.5”,
“crypto”: “^1.0.1”,
“express”: “^4.18.2”,
“express-jwt”: “^8.4.1”,
“express-validator”: “^7.0.1”,
“jsonwebtoken”: “^9.0.0”,
“mysql”: “^2.18.1”
}
写回答
1回答
-
Wuhk
提问者
2023-05-15
1、降低 版本即可
npm uninstall express-jwt 卸载
npm i express-jwt@6.1.0 安装6.1.0版本jwt({加
algorithms:['HS256'],
})
00
相似问题