简体   繁体   中英

User Confirmation in MVP Pattern with Passive View

How would you handle calling a user confirmation dialog before continuing with a task in a web-based MVP pattern implementation? It'll have to do a postback in between and the confirmation would go out of the scope of the presenter function that called it. I'd prefer to keep to a pure MVP implementation but is it even possible?

You can't implement this logic in one single server-side function. I believe the standard approach to tackle this is either to

  • Have multiple steps that each involve one postback to the server. One of these steps would be the confirmation dialog you mentioned

or

  • Show the confirmation dialog via Javascript

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM