Angular2双向数据绑定
Angular2 two-way data binding
我知道 Angular2 没有双向数据绑定,但有没有办法模仿 Angular1.x 的双向数据绑定行为?
您可以通过附加到输入字段上的事件并更新内部值来完成此操作,如本例所示:
http://plnkr.co/edit/lOFzuWtUMq1hCnrm9tGA?p=preview
创建一个组件,该组件具有包含标签 this.label
的内部属性和需要事件对象的回调 changeLabel
@Component({
selector: 'app',
templateUrl: 'bound.html'
})
class App {
label: string;
constructor() {
this.label = 'default label'
}
changeLabel(event) {
this.label = event.target.value;
}
}
bootstrap(App);
创建您的模板并将回调附加到适当的事件(您可以将其附加到 keypress
事件,但您可能需要超时。我将其附加到 change
事件简单性(这意味着您可能需要关闭输入以查看更新)。
<label for="myinput">{{label}}</label>
<input id="myinput" type="text"/>
<p></p>You can change the label above by typing something below</p>
<label for="labeltext">New Label Text</label>
<input type="text" id="labeltext" (change)="changeLabel($event)"/>
注意 - 向下滚动 ng-model 绑定的答案
您实际上可以这样做,只是您需要调用内部更改侦听器滴答声(类似于摘要)来更新区域中的绑定,您可以为此添加一个 (keyup)
事件。同样,您也可以将指令绑定与 properties
组件设置字典一起使用。
示例:-
<input #label (keyup)>
<!-- variable #label represented as the element itself and accessible as property on controller instance
You can even bind keyup to a function or another another function and pass value from the label property-->
显示为:
<p>{{label.value}}</P>
父组件有一个文本框和一个标签。
import { Component, bootstrap} from '@angular/core';
import {Display} from 'display';
@Component({
selector: 'my-app',
template: `<p><b>Parent Component:</b><p><input #label (keyup) (change)="handleChange(label.value)">
<p>{{label.value}}</P> <display [text]="label"></display></p></p>`,
directives: [Display]
})
class MainComponent {
label: any;
constructor() {
}
handleChange(label){
this.label = label;
console.log(this.label);
}
}
现在也在子组件中显示它:
@Component({
selector: 'edit',
template: `<p><b>Child Component:</b></p>{{text.value}}`
})
export class Edit {
@Input() text:any;
}
更新 - 2 向绑定的 ng-模型
虽然Angular2默认是一次性绑定的,但是引入了ngModel
糖来实现双向绑定。例如,您可以这样做:
<input ngControl="name" [(ngModel)]="name">
此处使用方括号 ([..]
) 建议使用 属性 绑定和圆括号 ((..)
) 用于事件绑定。基本上,当您使用 ng-model
时,您同时启用了两个绑定 ngModel
更像是一个事件。在幕后,它创建了一个可观察事件(使用 EventEmitter
)来跟踪绑定元素中的 value
变化并分别更新绑定的 属性。
例如:-
包括 formDirectives:
import {FORM_DIRECTIVES} from '@angular/common';
和表格
<form (ngSubmit)="onSubmit()" let-f="form">
<input ngControl="name" [(ngModel)]="name">
<button>Click me and check console</button>
</form>
无形式
<input [(ngModel)]="name">
<button (click)="onSubmit()">Click me and check console</button>
没有必要了
在视图注释中包含 formDirectives 依赖项。
@Component({
template: .....,
directives: [FORM_DIRECTIVES]
})
另请阅读 nice write up from Victor Savkin 关于通过创建 ng-model 事件在 angular2 中进行双向绑定及其工作原理。
您现在可以使用 ngModel 使用以下语法简单地执行此操作:
<input [(ngModel)]="myProp" />
方括号和圆括号的组合表示"two-way binding".
请看图here
还有另一种方法可以让 Angular2 进入双向绑定。不要将 属性 而是一个对象传递到组件中。如果您通过单向绑定传递一个对象,那么它的所有属性实际上都是双向绑定的。 它使组件的通用性降低,因为它需要知道对象,但在许多情况下它仍然有用。
我有一个看起来像这样的组件:
import { Component, Input } from "@angular/core";
import { NgSwitch, NgSwitchWhen, NgSwitchDefault } from "@angular/common";
export class Movie
{
public Title: string;
public Rating: number;
public Seen: boolean;
}
@Component
({
selector: "hh-image-checkbox",
template: `
<div [ngSwitch]="movie.Seen">
<div *ngSwitchWhen="true">
<img src="/Content/res/CheckTrue.png" (click)="onClick()">
</div>
<div *ngSwitchDefault>
<img src="/Content/res/CheckFalse.png" (click)="onClick()">
</div>
</div>
`,
directives: [NgSwitch, NgSwitchWhen, NgSwitchDefault]
})
export class ImageCheckboxComponent
{
@Input() movie: Movie;
public onClick()
{
this.movie.Seen = !this.movie.Seen;
}
}
它是这样调用的:
<hh-image-checkbox [movie]="movie"></hh-image-checkbox>
电影对象本身是单向绑定的,但它的所有属性都可用于双向绑定。
很简单,试试这个;
<input [(ngModel)]="property" placeholder="property Value"/>
<h1>{{property}}</h1>
是的,angular2 中有双向绑定。看这里:https://angular.io/docs/ts/latest/guide/template-syntax.html#!#ngModel
那么,在自定义组件中如何使用呢?
我喜欢做的事情是这样的:
private currentSelectedItem: MachineItem;
@Output() selectedItemChange: EventEmitter<MachineItem> = new EventEmitter<MachineItem>();
@Input() set selectedItem(machineItem: MachineItem) {
this.currentSelectedItem = machineItem;
this.selectedItemChange.emit(machineItem);
}
get selectedItem(): MachineItem {
return this.currentSelectedItem;
}
并像
一样使用它<admin-item-list [(selectedItem)]="selectedItem"></admin-item-list>
您还可以在实际更改的地方发出新值。但我发现在 setter 方法中执行 gloabaly 非常方便,而不必费心,例如当我将它直接绑定到我的视图时。
这是一个简单的 plunker,它根据 Angular2 2.0.0-beta.17[= 演示了一种方式、两种方式和事件驱动的方法。 16=]
双向事件和属性
<input [(ngModel)]="name" />
单向属性
<input [value]="name" />
事件驱动
<input (input)="name=$event.target.value">
我们可以为 more
挖掘 Angular 个文档[2020 年 1 月 26 日更新]
因为 Angular2 个 beta 库已从项目 CDN 中删除!以上 plnkr link 不再有效。
使用下面的新plnkr Angular 6+页面,我将上一页移植到NPMJS,新angular版本和新plnkr!
来自文档:
Two-way binding (
[(...)]
)You often want to both display a data property and update that property when the user makes changes.
On the element side that takes a combination of setting a specific element property and listening for an element change event.
Angular offers a special two-way data binding syntax for this purpose,
[(x)]
. The[(x)]
syntax combines the brackets of property binding,[x]
, with the parentheses of event binding,(x)
.[( )] = BANANA IN A BOX
Visualize a banana in a box to remember that the parentheses go inside the brackets.
有关详细信息,请参阅