Angular 2 JS app无法加载表单模块

时间:2016-11-22 14:15:31

标签: angular angular2-forms

我正在尝试在Javascript Angular 2应用程序中导入角形式模块。

app.module.js

import UIKit

class animationView: UIView {
override func drawRect(rect: CGRect) {
let path = UIBezierPath()
path.moveToPoint(CGPoint(x: 80, y: 50))
path.addLineToPoint(CGPoint(x: 140, y:150))
path.addLineToPoint(CGPoint(x: 10, y:150))
path.closePath()

UIColor.greenColor().setFill()
UIColor.redColor().setStroke()
path.lineWidth = 3
path.fill()
path.stroke()
}
}

在我的html模板中,我尝试使用表单模块:

(function(app) {

  app.AppModule =
    ng.core.NgModule({
      imports: [ ng.platformBrowser.BrowserModule, ng.forms.FormsModule ],
      declarations: [ app.AppComponent, app.Counter, app.Productlist ],
      bootstrap: [ app.AppComponent ]
    })
    .Class({
      constructor: function() {}
    });

})(window.app || (window.app = {}));

但是我收到了这个错误:

<input type="text" [(ngModel)]="userName" />

注意:项目和模板在没有表单模块的情况下工作,那么如何正确导入表单模块呢?

0 个答案:

没有答案