How to clear form after submit in Angular 2?

后端 未结 15 1485
遇见更好的自我
遇见更好的自我 2020-12-02 16:10

I have some simple angular 2 component with template. How to clear form and all fields after submit?. I can\'t reload page. After set data with date.setValue(\'\')

15条回答
  •  北海茫月
    2020-12-02 16:44

    Hm, now (23 Jan 2017 with angular 2.4.3) I made it work like this:

    newHero() {
        return this.model = new Hero(42, 'APPLIED VALUE', '');
    }
    
    

提交回复
热议问题