- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个 Azure Functions 应用。
我很惊讶地发现,在定义 Azure WebJob 函数时,HttpTriggerAttribute 不必应用于 HttpRequest 参数。
因此,虽然这是有效的,并且与大多数教程和示例匹配,
[FunctionName("get")]
public async Task<IActionResult> Get(
[HttpTrigger(AuthorizationLevel.Anonymous, nameof(HttpMethods.Get), Route = "api/get")]HttpRequest httpRequest)
这也是有效的,
[FunctionName("post")]
public async Task<IActionResult> Post(
[HttpTrigger(AuthorizationLevel.Anonymous, nameof(HttpMethods.Post), Route = "api/post")]MyType body)
由于该属性未绑定(bind)到 HttpRequest 参数,因此我很惊讶该属性是参数属性而不是方法属性,
[FunctionName("post")]
[HttpTrigger(AuthorizationLevel.Anonymous, nameof(HttpMethods.Post), Route = "api/post")]
public async Task<IActionResult> Post(MyType body)
为什么 HttpTriggerAttribute 被实现为参数属性而不是像 FunctionNameAttribute 这样的方法属性?
最佳答案
对于C#类库开发,FunctionName充当标记,将方法标记为函数入口点。它不涉及函数的输入。然而,触发属性不同。它不仅具有标记Function类型的功能,还具有将输入数据绑定(bind)到方法参数的作用。处理该方法时需要这些数据。您可以将触发器属性视为“direction in”类型的绑定(bind)。这种类型的绑定(bind)需要在C#类库的开发方法中作为参数输入。 “direction out”类型的绑定(bind)在函数外部定义为输出。它的特点就是如此。
关于c# - 为什么 Azure Function 应用程序中使用的 Microsoft.Azure.WebJobs.HttpTriggerAttribute 是参数属性而不是方法属性?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60234655/
我有一个 Azure Functions 应用。 我很惊讶地发现,在定义 Azure WebJob 函数时,HttpTriggerAttribute 不必应用于 HttpRequest 参数。 因此,
我是一名优秀的程序员,十分优秀!