としてレンダリングし、私はこのようなfunction.jsonとノード紺碧の機能があります。Azureの機能:NodeJS - HTTPレスポンスがXMLではなくHTML
{
"disabled": false,
"bindings": [
{
"name": "req",
"type": "httpTrigger",
"direction": "in",
"methods": [ "get" ]
},
{
"name": "res",
"type": "http",
"direction": "out"
}
]
}
を私のような機能が私にページを与えるためにHTMLを返すようにしたいですこの:私はこのようなindex.jsを書くしかし
、:
module.exports = function (context, sentimentTable) {
context.res = {
body: "<!DOCTYPE html> <html> <head> </head> <body> Hello World </body> </html>",
contentType: "text/html"
};
context.done();
};
私はこの取得しています:
Can Azure関数はhtmlを返しますか?