1

我想用 Suave 构建一个简单的计数器。

[<EntryPoint>]
let main argv =

  let mutable counter = 0;

  let app =
    choose
      [
        GET
        >=> choose
          [
            path "/" >=> OK "Hello, world. ";
            path "/count" >=> OK (string counter)
          ]
        POST
        >=> choose
          [
            path "/increment"
            >=> (fun context -> async {
              counter <- counter + 1
              return Some context
            })
          ]
      ]

  startWebServer defaultConfig app
  0

但是,使用我当前的解决方案,计数/count永远不会更新。

我认为这是因为WebPart是在启动应用程序时计算的,而不是针对每个请求。

在 Suave 中实现这一目标的最佳方法是什么?

4

1 回答 1

2

您假设Webparts 是值是正确的,因此计算一次。(见此

您需要使用闭包来获得所需的内容:

path "/count" >=> (fun ctx ->
    async {
        let c = counter in return! OK (string c) ctx
    })
于 2018-12-31T13:20:07.867 回答