Не смотря ни на что, ваша фс действительно проблематична c. Я разместил здесь файл и код функции, которая может быть успешно запущена:
Это структура моего приложения-функции:
This is my .fsproj:
netcoreapp3. 1 v3 СохранитьНовые PreserveNewest Никогда
А это мой файл триггера HttpTrigger.fs:
namespace Company.Function
open System
open System.IO
open Microsoft.AspNetCore.Mvc
open Microsoft.Azure.WebJobs
open Microsoft.Azure.WebJobs.Extensions.Http
open Microsoft.AspNetCore.Http
open Newtonsoft.Json
open Microsoft.Extensions.Logging
module HttpTrigger =
// Define a nullable container to deserialize into.
[<AllowNullLiteral>]
type NameContainer() =
member val Name = "" with get, set
// For convenience, it's better to have a central place for the literal.
[<Literal>]
let Name = "name"
[<FunctionName("HttpTrigger")>]
let run ([<HttpTrigger(AuthorizationLevel.Function, "get", "post", Route = null)>]req: HttpRequest) (log: ILogger) =
async {
log.LogInformation("F# HTTP trigger function processed a request.")
let nameOpt =
if req.Query.ContainsKey(Name) then
Some(req.Query.[Name].[0])
else
None
use stream = new StreamReader(req.Body)
let! reqBody = stream.ReadToEndAsync() |> Async.AwaitTask
let data = JsonConvert.DeserializeObject<NameContainer>(reqBody)
let name =
match nameOpt with
| Some n -> n
| None ->
match data with
| null -> ""
| nc -> nc.Name
let responseMessage =
if (String.IsNullOrWhiteSpace(name)) then
"This HTTP triggered function executed successfully. Pass a name in the query string or in the request body for a personalized response."
else
"Hello, " + name + ". This HTTP triggered function executed successfully."
return OkObjectResult(responseMessage) :> IActionResult
} |> Async.StartAsTask
Работает нормально, успешный журнал:
These is my step to create and run F# function:
1.Run these two command in cmd:
dotnet new --install Microsoft.Azure.WebJobs.ItemTemplates
dotnet new --install Microsoft.Azure.WebJobs.ProjectTemplates
2.Create function app:
dotnet new func --language F# --name FunctionsInFSharp
3.Create trigger:
dotnet new http --language F# --name HttpTrigger
4.Add trigger to compile:
Please add above code to ItemGroup in .fsproj file.
5.Change the template, change these from none to Content:
введите описание изображения здесь
Все, что я привел, - это простой пример того, как функция F # может быть успешно запущена, попробуйте и дайте мне знать, сможете ли вы решить эту проблему .:)