欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Angular2学习笔记之数据绑定的示例代码

程序员文章站 2022-03-22 13:22:27
简介 使用插值表达式将一个表达式的值显示在模版上

{{prod...

简介

使用插值表达式将一个表达式的值显示在模版上

<img src="{{imgurl}}" alt="">
<h1>{{producttitle}}</h1>

使用方括号将html标签的一个属性值绑定到一个表达式上

<img [src]="imgurl" alt="">

使用小括号将组件控制器的一个方法绑定到模版上面的一个事件的处理器上

<button (click)="onclickbutton($event)">按钮绑定事件</button>

注意

在开始下面的例子之前,请先确认已经新建了一个工程。如果没有,请查看:angular2学习笔记之angular cli 安装和使用教程

事件绑定

Angular2学习笔记之数据绑定的示例代码

准备工作

了解目的:在模版的界面上面增加一个按钮,然后通过小括号绑定一个事件。

新建一个 bind 组件,使用命令:  ng g c bind

修改 bind.component.html

<!-- 界面增加代码 -->
<button (click)="onclickbutton($event)">按钮绑定事件</button>

修改 bind.component.ts

//在 bindcomponent 类方法中增加方法体
onclickbutton(event: any){
 console.log(event);
}

修改 app.component.html

<!-- 增加 app-bind 组件 -->
<app-bind></app-bind>

图示:

Angular2学习笔记之数据绑定的示例代码

dom属性绑定

例子一

插值表达式 与 属性绑定 之间的关系

两种方式都可以实现,angular 在实现的逻辑上面是: 在程序加载组件的时候,会先将 "插值表达式" 翻译为 "属性绑定"

修改 bind.component.html

<!-- 界面增加代码 -->

<!-- 属性绑定 -->
<img [src]="imgurl" alt="">

<!-- 插值表达式绑定 -->
<img src="{{imgurl}}" alt="">

修改 bind.component.ts

//增加变量
imgurl: string = http://placehold.it/320x280;

图示:

Angular2学习笔记之数据绑定的示例代码

例子二

dom 属性 与 html 属性的区别

html元素的 dom属性和 html 属性是有部分区别的,这点需要明确差异。

修改 bind.component.html

<!-- 增加代码 -->
<div>
 <input type="text" value="tom" (input)="oninputevent($event)">
</div>

修改 bind.component.ts

//增加 event事件
oninputevent(event: any){
 //获取的是 dom 属性,即输入属性
 console.log(event.target.value);

 //获取的是 html 属性,也就是初始化的属性
 console.log(event.target.getattribute("value"));

}

图示:

Angular2学习笔记之数据绑定的示例代码

总结:

1.少量的 html属性和 dom属性之间有这 1 :1 的映射关系,如 :id
2.有些有 html属性,没有dom 属性, 如:colspan
3.有些有 dom属性,没有html 属性,如:textcontent
4.就算名字一样,dom属性和html属性获取的内容可能不一样
5.模版绑定是通过dom属性绑定的,而不是通过html属性
6.html属性指定了初始值,dom属性表示当前值;dom属性的值可以改变,html的值不能改变

例子部分完整代码

bind.component.html

<p>
 bind works!
</p>

<button (click)="onclickbutton($event)">按钮绑定事件</button>

<div>
 <!-- 属性绑定 -->
 <img [src]="imgurl" alt="">

 <!-- 插值表达式绑定 -->
 <img src="{{imgurl}}" alt="">
</div>

<div>
 <input type="text" value="tom" (input)="oninputevent($event)">
</div>

bind.component.ts

import { component, oninit } from '@angular/core';

@component({
 selector: 'app-bind',
 templateurl: './bind.component.html',
 styleurls: ['./bind.component.css']
})
export class bindcomponent implements oninit {

 imgurl: string = "http://placehold.it/320x280";

 constructor() { }

 ngoninit() {
 }

 onclickbutton(event: any){
  console.log(event);
 }

 oninputevent(event: any){
  //获取的是 dom 属性,即输入属性
  console.log(event.target.value);

  //获取的是 html 属性,也就是初始化的属性
  console.log(event.target.getattribute("value"));
 }
}

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。