我正在使用Python。必须将 Azure 函数中的变量 (comName) 传递给返回 func.HttpResponse 。下面是我的代码。
comName= 'Xerox'
return func.HttpResponse(status_code=200,headers={'content-type':'text/html'},
body=
"""<!DOCTYPE html>
<html>
<body>
<h1>Hello , thanks for your response {name} </h1>
</body>
</html>
"""
)
这是有效的,并返回 h1 标签。您好,感谢您的回复{name}
喵喵时光机
相关分类