当前位置: 首页>>代码示例>>TypeScript>>正文


TypeScript NgForm.resetForm方法代码示例

本文整理汇总了TypeScript中@angular/forms.NgForm.resetForm方法的典型用法代码示例。如果您正苦于以下问题:TypeScript NgForm.resetForm方法的具体用法?TypeScript NgForm.resetForm怎么用?TypeScript NgForm.resetForm使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在@angular/forms.NgForm的用法示例。


在下文中一共展示了NgForm.resetForm方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。

示例1: hideDialog

  hideDialog() {
   this.dialogDisplayed = false;
   if (this.editing) {
     this.refreshOnEdit(this.contact, this.selectedContact) // Refresh dataTable after company update
   }
   this.contactForm.resetForm();
 }
开发者ID:edouardo,项目名称:schedule-sys,代码行数:7,代码来源:contact.component.ts

示例2: navigateToSelectedIndex

    private navigateToSelectedIndex() {
        const optionalParams = {
            index: this.state.getIndex()
        };

        this.stopRestTimer();
        this.alarm.pause();
        this.workoutForm.resetForm();
        this.router.navigate(['workouts', this.workout.workoutId, optionalParams]);
    }
开发者ID:jbload,项目名称:Muscularity,代码行数:10,代码来源:workout.component.ts

示例3: onSubmit

 onSubmit(form: NgForm) {
     // Create
     var image = form.value.image;
     if(image == null  || image.length < 20 || image.includes('instagram') || !(image.includes("http") && image.includes("com")) ){
         form.value.image = "https://i1.wp.com/eddieandsylviarobertson.com/wp-content/uploads/2015/09/Default-Icon-icon.png";
     }
     if(form.value.author == null){
         form.value.author = "睡前要吃饱,否则会做饿梦的";
     }
     this.messageService.addMessage(new Message(
                                     form.value.content, 
                                     form.value.author,
                                     form.value.image,
                                     (new Date()).toLocaleString() ))
         .subscribe(
             data => console.log(data),
             error => console.error(error)
         );
     form.resetForm();
 }
开发者ID:shaowenstudio,项目名称:ResumeProjects,代码行数:20,代码来源:message-input.component.ts

示例4: onSubmit

 onSubmit(form: NgForm) {
     if(this.message) {
         //Edit
         this.message.content = form.value.content;
         this.messageService.updateMessage(this.message)
             .subscribe(
                 result => console.log(result)  
             );
         this.message = null;
     }else{
     //console.log(form);
     //console.log(value);
     const message = new Message(form.value.content, 'Srivatsa');
     this.messageService.addMessage(message)
         .subscribe(
             data => console.log(data),
             error => console.log(error)
         );
     }
     form.resetForm();
 }
开发者ID:Srivatsa2393,项目名称:MEAN-Stack-Guide,代码行数:21,代码来源:message-input.component.ts

示例5: onSubmit

 // Incoming value of type String
 onSubmit(form: NgForm) {
   if (this.message) {
     // Edit
     this.message.content = form.value.content;
     this.messageService.updateMessage(this.message)
                        .subscribe(
                          result => console.log(result)
                        );
     this.message = null;
   } else {
     // Creating
     const message = new Message(form.value.content, "John");
     this.messageService.addMessage(message)
         // Send the request
         .subscribe(
           data => console.log(data),
           error => console.error(error)
         );
   }
   // Angular's method
   form.resetForm();
 }
开发者ID:freesk,项目名称:angular2-messenger,代码行数:23,代码来源:message-input.component.ts

示例6: onClear

 onClear(form: NgForm) {
   // Clear
   this.message = null;
   form.resetForm();
 }
开发者ID:freesk,项目名称:angular2-messenger,代码行数:5,代码来源:message-input.component.ts

示例7: setTimeout

 setTimeout(() => {
     this.form.resetForm();
 },100);
开发者ID:mm999,项目名称:cas,代码行数:3,代码来源:contacts.component.ts


注:本文中的@angular/forms.NgForm.resetForm方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。