Skip to content
This repository was archived by the owner on Dec 4, 2017. It is now read-only.

Commit b328e52

Browse files
committed
docs(reactive-forms): restore KW's paragraph that I deleted by accident
1 parent 9a1e30e commit b328e52

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

public/docs/ts/latest/guide/reactive-forms.jade

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,17 @@ a#intro
6060
are always synchronous and under your control.
6161
You won't encounter the timing issues that sometimes plague a template-driven form.
6262

63+
In keeping with the reactive paradigm, the component
64+
preserves the immutability of the _data model_,
65+
treating it as a pure source of original values.
66+
Rather than update the data model directly,
67+
the component extracts user changes and forwards them to an external component or service,
68+
which does something with them (such as saving them)
69+
and returns a new _data model_ to the component that reflects the updated model state.
70+
71+
Using reactive form directives does not require you to follow all reactive priniciples,
72+
but it does facilitate the reactive programming approach should you choose to use it.
73+
6374
### _Template-driven_ forms
6475

6576
_Template-driven_ forms, introduced in the [Template guide](forms.html), take a completely different approach.

0 commit comments

Comments
 (0)