There is a problem with the angular4 parent component reusing the same child component to bind the child component data bidirectionally.

encapsulates an input box component, but I use this component many times in the same parent component. Because there is a problem with two-way binding, the value change of the second will lead to the change of the first value

.
Mar.20,2021

first of all, whether the bidirectional binding implements ControlValueAccessor.
then remove the bidirectional binding, split it into individual data streams and events, and test whether this will happen again.

Menu