在使用TypeScript的Angular2-forms框架时,我一直得到这个错误:

没有将exportAs设置为ngForm的指令

这是我的代码

项目依赖关系:

  "dependencies": {
    "@angular/common": "2.0.0-rc.6",
    "@angular/compiler": "2.0.0-rc.6",
    "@angular/core": "2.0.0-rc.6",
    "@angular/forms": "2.0.0-rc.6",
    "@angular/http": "2.0.0-rc.6",
    "@angular/platform-browser": "2.0.0-rc.6",
    "@angular/platform-browser-dynamic": "2.0.0-rc.6",
    "@angular/router": "3.0.0-rc.2",
    "ng2-bootstrap": "^1.1.1",
    "reflect-metadata": "^0.1.8",
    "core-js": "^2.4.0",
    "es6-module-loader": "^0.17.8",
    "rxjs": "5.0.0-beta.11",
    "systemjs": "0.19.27",
    "zone.js": "0.6.17",
    "jquery": "3.0.0",
  }

这是登录模板:

<form #loginForm="ngForm" (ng-submit)="authenticate(loginForm.value)">
</form>

...和登录组件:

import { Component } from '@angular/core';
import {Http, Headers}  from '@angular/http';
@Component({
    moduleId: module.id,
    selector: 'login-cmp',
    templateUrl: 'login.component.html'
})
export class LoginComponent {
  constructor($http: Http) {
    this.$http = $http;
  }
  authenticate(data) {
   ... 
  }
}

我有这个错误:

zone.js?1474211973422:484 Unhandled Promise rejection: Template parse errors:    
There is no directive with "exportAs" set to "ngForm" ("
            <form [ERROR ->]#loginForm="ngForm" 
(ngsubmit)="authenticate(loginForm.value)">

当前回答

在我的情况下,我必须从<form>标签中删除ngNoForm属性。

如果你想在你的应用程序中导入FormsModule,但又想跳过某个特定的表单,你可以使用ngNoForm指令来阻止ngForm被添加到表单中

参考:https://www.techiediaries.com/angular-ngform-ngnoform-template-reference-variable/

其他回答

我一遍又一遍地问同样的问题,也是出于同样的原因。我来回答一下我做错了什么。可能对某人有帮助。

我通过angular-cli命令创建组件

Ng g c components/something/something

它所做的,是创建我想要的组件。

此外,在创建组件时,它将该组件添加到App模块的declarations数组中。

如果是这种情况,请将其移除。 瞧!它可能会起作用。

(以防别人也像我一样瞎) 形成增值!确保使用<form>标签

不工作:

<div (ngSubmit)="search()" #f="ngForm" class="input-group">
    <span class="input-group-btn">
      <button class="btn btn-secondary" type="submit">Go!</button>
    </span>
    <input type="text" ngModel class="form-control" name="search" placeholder="Search..." aria-label="Search...">
</div>

效果非常好:

 <form (ngSubmit)="search()" #f="ngForm" class="input-group">
     <span class="input-group-btn">
       <button class="btn btn-secondary" type="submit">Go!</button>
     </span>
     <input type="text" ngModel class="form-control" name="search" placeholder="Search..." aria-label="Search...">
</form>

你必须声明FormsModule,也必须声明component

declarations: [
   YourComponent  -->
  ],
  imports: [
    BrowserModule,
    FormsModule, -->

    
  ],

This

<div #myForm="ngForm"></div>

也会导致错误,可以通过包含ngForm指令来修复。

<div ngForm #myForm="ngForm"></div>

你必须关心的三件事:

如果你正在使用子模块,你必须导入该子模块中的FormModule: 导入:[CommonModule, HttpModule, FormsModule] 你必须在模块中导出FormModule: 出口(FormsModule): 所以加起来是这样的: 导入:[CommonModule, HttpModule, FormsModule], 出口:[FormsModule], 在文件的顶部,你必须导入FormsModule: import {FormsModule} from '@angular/forms';


如果你只使用app.module.ts,那么不需要导出。只需要导入。