Welcome to FlowZap, the App to diagram with Speed, Clarity and Control.

用户-浏览器-服务器 CRUD 工作流程

patterns

此工作流程对用户通过浏览器和服务器创建、读取、更新和删除数据的过程进行建模。

完整 FlowZap 代码

user { # User
  n1: circle label:"Start Crud User Browser Server"
  n2: diamond label:"Receive Crud User Browser Server event"
  n3: rectangle label:"Validate Crud User Browser Server conditions"
  n5: rectangle label:"Record Crud User Browser Server outcome"
  n7: circle label:"End Crud User Browser Server"
  n1.handle(right) -> n2.handle(left)
  n2.handle(right) -> n3.handle(left) [label="Yes/Approved"]
  n2.handle(bottom) -> app.n4.handle(top) [label="No/Rejected"]
  n3.handle(right) -> n5.handle(left)
  n5.handle(bottom) -> app.n6.handle(top)
}

app { # App
  n4: rectangle label:"Execute Crud User Browser Server action"
  n6: rectangle label:"Monitor Crud User Browser Server status"
  n6.handle(right) -> user.n7.handle(left)
  n4.handle(right) -> user.n5.handle(top)
}

相关模板