The basic scenario is to request data from server once some parameters
that represented by tags(UIView
) has been edited by user. The general solution is to add events to observe those tags. Once any tag has been removed, a new http request could be submitted & then comes problem. For example, if user continuous deleted two tags, the original solution would submit two request continuously. It's definitely irrational as the first request is redundant.
So, is there any idea to regard those continuous action as a single operation?