每当我尝试通过使用离线运行无服务器框架时
sls 离线
对于每个功能,我都会收到此警告。
这似乎是无服务器离线的问题,已在较新版本中修复 - https://github.com/dherault/serverless-offline/issues/381
您是否尝试过升级 Serverless Offline?
这里我使用了 s-function.json文件,在这个文件中,我改变了
"runtime": "nodejs" instade of "nodejs8.10", 还添加端点
"endpoints": [
{
"path": "func-name",
"method": "POST",
"requestParameters": {
"htmlContent": true
},
"requestTemplates": {
"application/json": {
"payload": "$input.json('$')"
}
}
}
],
这对我有用。