我创建了简单的azure函数(Http + C#),它返回简单的test.I想要从azure函数返回到azure移动服务的响应。之前我从我的移动服务中调用了存储过程。现在我试图调用它azure函数(节点Js)想要从azure函数中获取响应。 Azure移动服务代码和我下面简单的azure功能脚本
module.exports = {
"post": function (req, res, next) {
console.log("Started Application Running");
var http = require("http");
var options = {
host: "< appname >.azurewebsites.net",
path: "api/<functionname>?code=<APIkey>",
method: "POST",
headers : {
"Content-Type":"application/json",
"Content-Length": { name : "Testing application"}
}
};
http.request(options, function(response) {
var str = "";
response.on("data", function (chunk) {
str += chunk;
res.json(response);
console.log("Something Happens");
});
response.on("end", function () {
console.log(str);
res.json(response);
});
});
console.log("*** Sending name and address in body ***");
}
};
&#13;
这是我的天蓝色功能
using System.Net;
public static async Task<HttpResponseMessage> Run(HttpRequestMessage req, TraceWriter log)
{
log.Info("C# HTTP trigger function processed a request.");
// parse query parameter
//string name = req.GetQueryNameValuePairs()
// .FirstOrDefault(q => string.Compare(q.Key, "name", true) == 0)
//.Value;
string name = "divya";
// Get request body
dynamic data = await req.Content.ReadAsAsync<object>();
// Set name to query string or body data
name = name ?? data?.name;
return name == null
? req.CreateResponse(HttpStatusCode.BadRequest, "Please pass a name on the query string or in the request body")
: req.CreateResponse(HttpStatusCode.OK, "Hello Welcome ");
}
&#13;
。任何人都可以帮助我吗?
答案 0 :(得分:1)
您应该使用req.write(data)
发送您的请求正文,而不是Content-Length
。有关如何执行此操作的示例,请参阅this answer。
您的代码应如下所示:
module.exports = {
"post": function (req, res, next) {
var http = require("http");
var post_data = JSON.stringify({ "name" : "Testing application"});
var options = {
host: "<appname>.azurewebsites.net",
path: "/api/<functionname>?code=<APIkey>", // don't forget to add '/' before path string
method: "POST",
headers : {
"Content-Type":"application/json",
"Content-Length": Buffer.byteLength(post_data)
}
};
var requset = http.request(options, function(response) {
var str = "";
response.on("data", function (chunk) {
str += chunk;
});
response.on("end", function () {
res.json(str);
});
});
requset.write(post_data);
requset.end();
requset.on('error', function(e) {
console.error(e);
});
}
};