Skip to content

Instantly share code, notes, and snippets.

@yvanst
Created June 22, 2019 02:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yvanst/f661603d91a1ab1f5f10b7d881b8704f to your computer and use it in GitHub Desktop.
Save yvanst/f661603d91a1ab1f5f10b7d881b8704f to your computer and use it in GitHub Desktop.
泳道图
actor User
participant "前端" as A
participant "View" as B
participant "Model" as C


User -> A: 待求解方程
activate A

A -> B: 接口api请求
activate B

B -> C: 构建指定类并计算
activate C

C --> B: 返回结果
deactivate C

B --> A: 返回json结果
deactivate B

A --> User: 方程的解
deactivate A
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment