GetLoginUrl: Microsoft.Azure.WebJobs.Host: Error indexing method ‘Login.GetLoginUrl’. Microsoft.Azure.WebJobs.Host: Cannot bind parameter ‘log’ to type ILogger. Make sure the parameter Type is supported by the binding. If you’re using binding extensions (e.g. ServiceBus,Timers,etc.) make sure you’ve called the registration method for the extension(s) in your startup code (e.g. config.UseServiceBus(),config.UseTimers(),etc.).
之前,我曾经将TraceWriter日志作为我方法的最后一个参数,但后来我发现我应该使用ILogger.在我做出改变之前,我得到了与上面相同的错误.
ILogger似乎映射到程序集Microsoft.Extensions.Logging.Abstractions.也许这就是为什么它不被认可?应该使用哪种ILogger?这是方法签名.
[FunctionName("GetLoginUrl")] public static HttpResponseMessage GetLoginUrl( [HttpTrigger(AuthorizationLevel.Anonymous,"get",Route = null)]HttpRequestMessage req,ILogger log)
我没有尝试将此部署到Azure.
不幸的是,创建一个全新的Functions项目并没有帮助,因为没有.CS文件可以查找以纠正这个问题.
解决方法
您可能直接引用一些较旧的NuGet包(例如Microsoft.Azure.WebJobs).如果是这样,请务必将其删除.除非您使用一些额外的绑定,否则您的csproj引用应该看起来像这样简单:
<ItemGroup> <PackageReference Include="Microsoft.NET.Sdk.Functions" Version="1.0.4" /> </ItemGroup>