Login
Remember
Register
Ask a Question
What are the drawbacks of MVW pattern?
0
votes
asked
Mar 3, 2020
in
ReactJS
by
miceperry
What are the drawbacks of MVW pattern?
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Mar 3, 2020
by
miceperry
DOM manipulation is very expensive which causes applications to behave slow and inefficient.
Due to circular dependencies, a complicated model was created around models and views.
Lot of data changes happens for collaborative applications(like Google Docs).
No way to do undo (travel back in time) easily without adding so much extra code.
...