Azure Functions - Value cannot be null. (Parameter #39;connectionString#39;)(Azure Functions - 值不能为空.(参数“连接字符串))
问题描述
我试图设置简单的 Azure 函数来读取 XML 流并将其同步回数据库.我的计划是使用时间触发器每天执行一次函数.
I was trying to setup simple Azure Function to read a XML stream and sync it back to the database. My plan was to use a Time Trigger to execute the function once per day.
但是,事情看起来不太好.即使我不使用数据库,我也会收到以下错误:
Howerver, things are not looking great. I'm getting the following error, even if I don't use a database:
[Error] Executed 'Functions.<func-name>' (Failed, Id=<func-id>, Duration=1ms)Value cannot be null. (Parameter 'connectionString')
我目前正在尝试执行以下功能:
I'm currently trying to execute the following function:
module.exports = async function(context, req) {
context.res = {
body: "Success!"
};
};
同样的结果.我无法运行它.
Same result. I can't run it.
我在配置中添加了一个连接字符串 ->连接字符串(根据消息,我以为我错过了).
I've added a Connection String to the Configuration -> Connection Strings (I thought that I've missed that, based on the message).
我的 functions.json 文件如下所示:
My functions.json file looks like:
{
"bindings": [
{
"name": "myTimer",
"type": "timerTrigger",
"direction": "in",
"schedule": "0 0 * * * *"
},
{
"type": "http",
"direction": "out",
"name": "res"
}
]
}
我也尝试过运行 C# 函数 - 结果相同.
I've also tried running a C# function - same result.
那么,我错过了什么?
推荐答案
从 Microsoft 到最好的日志.
缺少 AzureWebJobsStorage 应用设置.
解决方案:
- 创建存储帐户(或使用现有帐户)
- 转到 Function App 的配置
- 将带有连接字符串的 AzureWebJobsStorage 添加到您的存储帐户(可在存储帐户概述 -> 访问密钥中找到)
这篇关于Azure Functions - 值不能为空.(参数“连接字符串")的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Azure Functions - 值不能为空.(参数“连接字符串")
- Css:将嵌套元素定位在父元素边界之外一点 2022-09-07
- 使用RSelum从网站(报纸档案)中抓取多个网页 2022-09-06
- 失败的 Canvas 360 jquery 插件 2022-01-01
- Quasar 2+Apollo:错误:找不到ID为默认的Apollo客户端。如果您在组件设置之外,请使用ProvideApolloClient() 2022-01-01
- Fetch API 如何获取响应体? 2022-01-01
- 如何使用 JSON 格式的 jQuery AJAX 从 .cfm 页面输出查 2022-01-01
- addEventListener 在 IE 11 中不起作用 2022-01-01
- 400或500级别的HTTP响应 2022-01-01
- CSS媒体查询(最大高度)不起作用,但为什么? 2022-01-01
- Flexslider 箭头未正确显示 2022-01-01