3
如何處理使用長頸鹿的失敗後操作?如何處理使用長頸鹿失敗的後期操作?
使用長頸鹿失敗後操作的建議做法是什麼?
let private registrationHandler =
fun(context: HttpContext) ->
async {
let! data = context.BindJson<RegistrationRequest>()
let response = register data |> function
| Success profile -> profile
| Failure -> ???
return! json response context
}
具體來說,如果服務器無法將數據寫入到一些數據庫,我應該返回給客戶端(這將編譯)。