博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[Angular 2] ng-model and ng-for with Select and Option elements
阅读量:5774 次
发布时间:2019-06-18

本文共 848 字,大约阅读时间需要 2 分钟。

You can use Select and Option elements in combination with ng-for and ng-model to create mini-forms that change your data as you make a selection.

 

/** * Created by wanzhen on 23.10.2015. */import {Component, View, NgFor, FORM_DIRECTIVES} from 'angular2/angular2';import {TodoService} from './todoService';import {TodoItemRender} from './todoItemRender';import {StartsWith} from './startsWith';@Component({    selector: 'todo-list'})@View({    pipes: [StartsWith],    directives: [NgFor, TodoItemRender, FORM_DIRECTIVES],    template: `          
`})export class TodoList{ letters: string[] = ['e', 's', 'w']; selectedLetter: string = 'e'; constructor( public todoService:TodoService ){ }}

 

转载地址:http://rhhux.baihongyu.com/

你可能感兴趣的文章
springcloud使用zookeeper作为config的配置中心
查看>>
校园火灾Focue-2---》洗手间的一套-》电梯
查看>>
css控制文字换行
查看>>
bzoj1913
查看>>
L104
查看>>
分镜头脚本
查看>>
链表基本操作的实现(转)
查看>>
邮件发送1
查看>>
[转] libcurl异步方式使用总结(附流程图)
查看>>
编译安装LNMP
查看>>
[转]基于display:table的CSS布局
查看>>
crm 02--->讲师页面及逻辑
查看>>
AS3.0 Bitmap类实现图片3D旋转效果
查看>>
Eigen ,MKL和 matlab 矩阵乘法速度比较
查看>>
带三角的面包屑导航栏(新增递增数字)
查看>>
Web应用程序安全与风险
查看>>
codeforces 984 A. Game
查看>>
CSS居中
查看>>
One Person Game(概率+数学)
查看>>
CodeForces 258B Little Elephant and Elections :于1-m中找出七个数,使六个数里面的4和7个数比第七个数严格小:数位dp+dfs...
查看>>