我尝试使用python在本地运行我的Azure Functions,收到的错误消息如下:
[2023-03-03T11:34:59.832Z] No job functions found. Try making your job classes and methods public. If you're using binding extensions (e.g. Azure Storage, ServiceBus, Timers, etc.) make sure you've called the registration method for the extension(s) in your startup
code (e.g. builder.AddAzureStorage(), builder.AddServiceBus(), builder.AddTimers(), etc.).
我用这个命令创建了我的项目,并且没有在生成的代码中做任何修改:
func init LocalFunctionProj --python -m V2
当我尝试使用此命令运行应用程序时,我会收到上面提到的错误消息:
func start --verbose
我正在python v3. 10上运行这个。而且,当我试图创建v1 python函数时,它工作起来没有任何问题。
知道为什么会这样吗?
1条答案
按热度按时间jecbmhm31#
使用相同的命令,我已经在我的本地环境-Python 3.10.10 v2模型Azure Functions Project中创建并测试了:
在终端中,使用
cd .\LocalFunctionProj\
更改路径以运行函数func start --verbose
我已经为Python v2模型提供了既可在本地运行又可在Azure云中运行的实用解决方案-SO #74671905
错误的原因可能是任何代码文件(如
function_app.py
、local.settings.json
、host.json
)中的典型代码错误,或者检查Azurite模拟器是否安装在VS代码扩展中并处于运行状态。host.json
如果所有代码和配置都正确,请尝试激活虚拟环境(Python article),然后运行函数: