Angular 2.0 和 ng-model
Posted
技术标签:
【中文标题】Angular 2.0 和 ng-model【英文标题】:Angular 2.0 and ng-model 【发布时间】:2015-11-24 11:47:29 【问题描述】:我正在为有关 Angular 2 迁移的演示构建一个演示应用程序。我的应用程序的一部分有<input ng-model="" />
,我想将其更改为“Angular 2 的方式”。
所以,我有两个选择:
-
使用“formDirectives”,这对我的演示来说有点过头了,因为我这里没有表单,只有一些输入更新了一些数据
使用 Victor Savkin(来自 Angular 2 团队)在他的(很棒的)post 中展示的内容:
<input ([ng-model])="todo.text" />
当ng-model
是指令时:
import Directive, EventEmitter from 'angular2/angular2';
@Directive(
selector: '[ng-model]',
properties: ['ngModel'],
events: ['ngModelChanged: ngModel'],
host:
"[value]": 'ngModel',
"(input)": "ngModelChanged.next($event.target.value)"
)
export class NgModelDirective
ngModel: any; // stored value
ngModelChanged: EventEmitter; // an event emitter
我已经在我的演示项目中实现了这个:
import Component, View from 'angular2/angular2';
import NgModelDirective as NgModel from '../ng-model/ng-model';
@Component(
selector: 'font-size-component',
properties: [
'font'
]
)
@View(
template: `<input id="fontSize" class="form-control" name="fontSize" ([ng-model])="font.fontSize"/>`,
directives: [
NgModel
]
)
export class FontSizeComponent
constructor()
我的输入正在使用提供的数据呈现(属性绑定 [ng-model 正在工作],但事件绑定不起作用,出现以下错误:
EXCEPTION: TypeError: Cannot read property 'observer' of undefined
EXCEPTION: TypeError: Cannot read property 'location' of undefined
EXCEPTION: TypeError: Cannot read property 'hostView' of undefined
当我从 ng-model
指令中删除这一行 events: ['ngModelChanged: ngModel'],
时,所有错误都消失了......
我对 Angular 2 很陌生(我们可能都是),并尝试了解我在这里做错了什么......
编辑
好的,所以在reading 多一点之后,我确信使用formDirectives
并不是那么矫枉过正。我的解决方案是(使用 Angular 2 Alpha 35 现在是 FORM_DIRECTIVES
而不是 formDirectives
):
import Component, View, FORM_DIRECTIVES from 'angular2/angular2';
@Component(
selector: 'font-size-component',
properties: [
'fontSize'
]
)
@View(
template: `<input id="fontSize" class="form-control" name="fontSize" [(ng-model)]="fontSize"/>`,
directives: [
FORM_DIRECTIVES
]
)
export class FontSizeComponent
constructor()
【问题讨论】:
实际上 Victor Savkin 的博客中的帖子只是一个如何实现 ng-model 的示例,angular2 表单带有一个包含在 FORM_DIRECTIVES 中的实现。看起来最后一次编辑还可以,它是最 Angular 1 方式的 AFIK。有什么没有按预期工作吗? 【参考方案1】:您必须为您的指令初始化events
事件发射器。您可以在控制器中执行此操作:
import EventEmitter, Directive from 'angular2/angular2';
@Directive(
selector: '[ng-model]',
properties: ['ngModel'],
events: ['ngModelChanged: ngModel'],
host:
"[value]": 'ngModel',
"(input)": "ngModelChanged.next($event.target.value)"
)
export class NgModelDirective
ngModel: any; // stored value
ngModelChanged: EventEmitter; // an event emitter
constructor()
this.newModelChanged = new EventEmitter(); // <== INITIALIZATION
或者,如果您使用的是 TypeScript,请在属性定义中:
// ...
export class NgModelDirective
ngModel: any; // stored value
ngModelChanged = new EventEmitter(); // <== INITIALIZATION
【讨论】:
以上是关于Angular 2.0 和 ng-model的主要内容,如果未能解决你的问题,请参考以下文章
Angular 2.0、Typescript 和“FORM_DIRECTIVES”模块
Angular 2.0 Material MdDialog 与 Angular 2.0 的工作示例