博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[Angular 2] Using ng-model for two-way binding
阅读量:4842 次
发布时间:2019-06-11

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

Two-way binding still exists in Angular 2 and ng-model makes it simple. The syntax is a combination of the [input] and (output) syntax to represent that the data is being pushed out and pulled in.

 

import {Component, View, FORM_DIRECTIVES} from "angular2/angular2";import {TodoService} from "./todoService";@Component({    selector: 'todo-input'})@View({    directives: [FORM_DIRECTIVES],    template: `        
{
{todoModule}}
`})export class TodoInput{ todoModule; constructor( //@Inject(TodoService) todoService public todoService:TodoService ){ this.todoService = todoService; console.log(todoService); } onSubmit(){ this.todoService.addTodo(this.todoModule); }}

 

转载于:https://www.cnblogs.com/Answer1215/p/4910159.html

你可能感兴趣的文章
Mac下为什么有的文件名后带一个* 星号?
查看>>
Hololens入门之语音识别(语音命令)
查看>>
python_day09 多进程 多线程 协程 paramiko模块
查看>>
学习WPF之 Binding
查看>>
Windows7系统下Oracle数据库安装的oracle net configuration assistant失败问题
查看>>
umeditor 踩坑
查看>>
luogu P1854 花店橱窗布置
查看>>
6-6 小球下落 uva679
查看>>
Victor and World 状压dp
查看>>
vim 常用设置
查看>>
NGUI所见即所得之UIAtlasMaker , UIAtlas (2)
查看>>
Dynamics AX 2012 R2 耗尽用户
查看>>
项目引入非配置的文件,打成war包后测试报错的可能原因
查看>>
ubuntu更改apache2根目录
查看>>
Hibernate配置属性
查看>>
hibernate.properties
查看>>
那些可能被你忽略的MySQL优化技巧
查看>>
bzoj1034: [ZJOI2008]泡泡堂BNB
查看>>
Android Studio快捷键每日一练(2)
查看>>
atoi函数实现
查看>>