Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
3.3k views
in Technique[技术] by (71.8m points)

javascript - How to properly update the UI and the business logic with loose coupling

Say I have a button where the user clicks and 2+ things would happen:

  1. A business logic will be invoked.
  2. UI will change on screen.

The invoked business logic looks like this:

car.setCommand(new StartCarCommand(engine));
car.execute()

the UI looks like this:

class CarUI
{
    startEngine(picture)
    {
         //show car starting engine picture.
    }
}

So How to provide an effective 'Loose coupling' or how should this be designed. I can surely do something like this:

car.setCommand(new StartCarCommand(engine, carUI));

and in the execute to do:

execute()
{
    engine.start();
    carUI.setPicuture("....");
}

but it feels that it defeats the 'command pattern'. Should I add another command pattern only for the UI?


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
等待大神解答

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...