I am currently working with AngularJS to develop a basic Single Page Application (SPA).
Within this application, there is a <textarea>
element that displays initial content from a binding:
<textarea>{{activeField.rawContent}}</textarea>
The goal is for users to be able to modify the text in the textarea and then save it to a database.
However, I have encountered an issue where once any input is entered, the textarea no longer displays the updated content from the binding, even if the activeField.rawContent
data has been changed.
How can I prevent this behavior from happening?