下面的代码给出了
客户端/服务器/服务器/云
我想改变安排
服务器/云客户端
如何重新排列状态图的列?
@startuml
participant Client as "This is a Client"
participant Server as "This is a Server"
participant Cloud as "The big data Cloud"
Client -> Server : Request a\nHTML Document
Server -> Cloud : Get\nIngredients of content
Cloud -> Server : Deliver the\nXML content
Server -> Client : Send the \nHTML page
@enduml

发布于 2020-01-16 09:58:49
将参与者按另一个顺序排列如何:
@startuml
participant Server as "This is a Server"
participant Cloud as "The big data Cloud"
participant Client as "This is a Client"
Client -> Server : Request a\nHTML Document
Server -> Cloud : Get\nIngredients of content
Cloud -> Server : Deliver the\nXML content
Server -> Client : Send the \nHTML page
@endumlhttps://stackoverflow.com/questions/59766928
复制相似问题