Ajax 调用 Azure 函数 returns 无数据
Ajax call to Azure function returns no data
这是我第一次使用 Azure Functions。我正在尝试使用 header 中传递的身份验证令牌访问第 3 方 API。当我 运行 单独在本地使用 Azure 函数时,我成功取回了一些数据,因为它将正确的数据记录到我的控制台。我已经把这个基础功能部署到Azure上了,并且在CORS列表中添加了*进行测试。但是,当我创建一个简单的 HTML 文件托管在我们的网站上时,在脚本标记中使用 ajax 来获取此数据 - 这样我最终可能会在 html 页面上显示它 - 没有被退回。我还没有找到使用我的特定代码库或代码如此简单的任何其他示例。没有错误消息,它只是记录 ''。这是我的 html/JS 脚本:
<script type="text/javascript">
$(document).ready(function () {
console.log("fired off on ready...");
var url = "https://{...}.azurewebsites.net/api/{...}?"
$.ajax({
method: "GET",
url: url,
crossDomain: true,
success: function (respData) {
console.log(respData);
$("#functionData").html("<div style='padding: 5em 1em; text-align: center; color: #008800'>" + respData + "</div>");
},
error: function (jqXHR) {
console.log(jqXHR)
$("#functionData").html("<div style='padding: 1em; text-align: center; color: #660000'>Sorry, an error occurred: " + jqXHR.responseText + "</div>");
}
});
})
</script>
这是我的 Azure 函数中的 index.js 文件:
module.exports = async function(context) {
var config = {
method: 'get',
url: 'http://{apiUrl}',
headers: {
'auth-token': '{...}'
}
};
await axios(config)
.then(function (response) {
let res = JSON.stringify(response.data)
context.log(res);
return res;
})
.catch(function (error) {
context.log(error);
});
}
为了以防万一,这是我的 function.json 文件:
{
"bindings": [
{
"authLevel": "anonymous",
"type": "httpTrigger",
"direction": "in",
"name": "req",
"methods": [
"get"
]
},
{
"type": "http",
"direction": "out",
"name": "res"
}
]
}
正如我所说,当我在本地运行 azure函数时,context.log在VSCode终端中显示数据,所以我一直在假设它也是返回数据 - 但现在我不确定。
如果您能提供任何指导,我将不胜感激,我觉得我一定很接近,但有些配置不太正确。提前致谢!
问题请参考以下代码
我的函数应用代码
const axios = require('axios');
module.exports = async function (context, req) {
context.log('JavaScript HTTP trigger function processed a request.');
var config = {
method: 'get',
url: '',
headers: { }
};
try{
var response= await axios(config)
const data=JSON.stringify(response.data)
context.res = {
headers: {
'Content-Type': 'application/json'
},
body: data
}
}catch(err){
context.log(err)
throw err
}
}
HTML
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>API</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script>
$(document).ready(function () {
$("#submit").click(function (e) {
$.ajax({
type: "GET",
url: "",
dataType: "json",
success: function (respData, status, xhr) {
console.log(respData)
#process data and show data
},
error: function (xhr, status, error) {
alert("Result: " + status + " " + error + " " + xhr.status + " " + xhr.statusText)
}
});
});
});
</script>
</head>
<body>
<button id="submit">Call API</button>
<div id="message"></div>
</body>
</html>
测试
这是我第一次使用 Azure Functions。我正在尝试使用 header 中传递的身份验证令牌访问第 3 方 API。当我 运行 单独在本地使用 Azure 函数时,我成功取回了一些数据,因为它将正确的数据记录到我的控制台。我已经把这个基础功能部署到Azure上了,并且在CORS列表中添加了*进行测试。但是,当我创建一个简单的 HTML 文件托管在我们的网站上时,在脚本标记中使用 ajax 来获取此数据 - 这样我最终可能会在 html 页面上显示它 - 没有被退回。我还没有找到使用我的特定代码库或代码如此简单的任何其他示例。没有错误消息,它只是记录 ''。这是我的 html/JS 脚本:
<script type="text/javascript">
$(document).ready(function () {
console.log("fired off on ready...");
var url = "https://{...}.azurewebsites.net/api/{...}?"
$.ajax({
method: "GET",
url: url,
crossDomain: true,
success: function (respData) {
console.log(respData);
$("#functionData").html("<div style='padding: 5em 1em; text-align: center; color: #008800'>" + respData + "</div>");
},
error: function (jqXHR) {
console.log(jqXHR)
$("#functionData").html("<div style='padding: 1em; text-align: center; color: #660000'>Sorry, an error occurred: " + jqXHR.responseText + "</div>");
}
});
})
</script>
这是我的 Azure 函数中的 index.js 文件:
module.exports = async function(context) {
var config = {
method: 'get',
url: 'http://{apiUrl}',
headers: {
'auth-token': '{...}'
}
};
await axios(config)
.then(function (response) {
let res = JSON.stringify(response.data)
context.log(res);
return res;
})
.catch(function (error) {
context.log(error);
});
}
为了以防万一,这是我的 function.json 文件:
{
"bindings": [
{
"authLevel": "anonymous",
"type": "httpTrigger",
"direction": "in",
"name": "req",
"methods": [
"get"
]
},
{
"type": "http",
"direction": "out",
"name": "res"
}
]
}
正如我所说,当我在本地运行 azure函数时,context.log在VSCode终端中显示数据,所以我一直在假设它也是返回数据 - 但现在我不确定。
如果您能提供任何指导,我将不胜感激,我觉得我一定很接近,但有些配置不太正确。提前致谢!
问题请参考以下代码
我的函数应用代码
const axios = require('axios');
module.exports = async function (context, req) {
context.log('JavaScript HTTP trigger function processed a request.');
var config = {
method: 'get',
url: '',
headers: { }
};
try{
var response= await axios(config)
const data=JSON.stringify(response.data)
context.res = {
headers: {
'Content-Type': 'application/json'
},
body: data
}
}catch(err){
context.log(err)
throw err
}
}
HTML
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>API</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script>
$(document).ready(function () {
$("#submit").click(function (e) {
$.ajax({
type: "GET",
url: "",
dataType: "json",
success: function (respData, status, xhr) {
console.log(respData)
#process data and show data
},
error: function (xhr, status, error) {
alert("Result: " + status + " " + error + " " + xhr.status + " " + xhr.statusText)
}
});
});
});
</script>
</head>
<body>
<button id="submit">Call API</button>
<div id="message"></div>
</body>
</html>
测试