Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

Required fields*

6
  • 11
    I have to admit that I start with Angular on Monday (so 4 days ago) and was doing their tutorials so I'm pretty sure I did something wrong but for me importing FormsModule didn't work. Then I added import { FORM_DIRECTIVES } from '@angular/forms'; and added the FORM_DIRECTIVES to directives and yeah my binding is working again (to be clear it was working before rc5 release) Commented Aug 11, 2016 at 13:05
  • 3
    Which seems to be related to this stackoverflow.com/questions/31623879/… Commented Aug 11, 2016 at 13:51
  • 2
    @PetLahev the issue you're having with the tutorial is that on August 7th, when you started, the tutorials were running Release Candidate 4. As of August 8th, they are at Release Candidate 5, which has different syntax Commented Aug 17, 2016 at 4:10
  • 7
    FORM_DIRECTIVES are dead just in case Commented Jan 31, 2017 at 11:19
  • 11
    It's worth nothing that, if you are using a SharedModule, you might need to import FormsModule there aswell. Commented Feb 14, 2017 at 20:23