下面的代码给出了
客户端/服务器/服务器/云
我想改变安排
服务器/云客户端
如何重新排列状态图的列?
@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
@enduml参见plantuml服务器上的结果:http://www.plantuml.com/plantuml/uml/NP312i8m38RlVOgmko-mWmmSgA0NtS73BdMDMs5hPvlw_AOimYOKKlv--H9QHTA1qZIgcQljxAmTmHt31mFe24Kps0Xyj8J51ZoCFXdX49ws1wD9B_4_QP7BHYbXePIyxlQ_qINSy9qmSaVhJitr0hNlqiIGMWXcPNe9HwJMdLqVq6HD1F-2pZlAzCAinJMEDjzemDOzs2peIYphbDpaJ0P1bfXrZwhYa7_i2m00
https://stackoverflow.com/questions/59766928
复制相似问题