2

我不断收到错误

ModuleNotFoundError:没有名为“azure”的模块

对于第 4 行,我import azure.functions as func 在下面是使用本教程设计的我的 init 文件的代码

import logging
import azure.functions as func

def main(req: func.HttpRequest) -> func.HttpResponse:
    logging.info('Python HTTP trigger function processed a request.')

    name = req.params.get('name')
    if not name:
        try:
            req_body = req.get_json()
        except ValueError:
            pass
        else:
            name = req_body.get('name')

    if name:
        return func.HttpResponse(f"Hellod {name}!")

    else:
        return func.HttpResponse(
             "Please pass a name on the query string or in the request body",
             status_code=400
        )

对此的任何帮助将不胜感激!

4

1 回答 1

5

你 pip 在你的 python 环境中安装了这个库吗?

pip install azure
于 2019-06-11T14:41:37.057 回答