如何在 Azure 函数应用程序中导入我的 class?
How can I import my class in an Azure function app?
大家好,我无法在我的函数应用程序中导入我的模块,我读到我无法使用 from myclass import Class,那么我如何导入我的 [=21] =] 在我的代码中?在 Azure Portal 中测试找不到名为....
的模块
我必须在 book、categore、user 和 databaseManager 中添加 classes,我应该如何导入它?我尝试使用 from app.notify-user-function import book,user,category,databaseManager,但没有用。
你可以试试这个:
from relative path import class name
例如:
如果要导入book.py中的图书,下面是book.py
中的代码
class Book():
def __init__(self, name):
self.name = name
def bark(self):
print(self.name + " is barking.")
您需要在 __init__.py
中执行此操作
from .book import Book
大家好,我无法在我的函数应用程序中导入我的模块,我读到我无法使用 from myclass import Class,那么我如何导入我的 [=21] =] 在我的代码中?在 Azure Portal 中测试找不到名为....
的模块我必须在 book、categore、user 和 databaseManager 中添加 classes,我应该如何导入它?我尝试使用 from app.notify-user-function import book,user,category,databaseManager,但没有用。
你可以试试这个:
from relative path import class name
例如:
如果要导入book.py中的图书,下面是book.py
中的代码class Book():
def __init__(self, name):
self.name = name
def bark(self):
print(self.name + " is barking.")
您需要在 __init__.py
from .book import Book