當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript EventEmitter.next方法代碼示例

本文整理匯總了TypeScript中angular2/angular2.EventEmitter.next方法的典型用法代碼示例。如果您正苦於以下問題:TypeScript EventEmitter.next方法的具體用法?TypeScript EventEmitter.next怎麽用?TypeScript EventEmitter.next使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在angular2/angular2.EventEmitter的用法示例。


在下文中一共展示了EventEmitter.next方法的9個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。

示例1: reportAmount

	reportAmount() {
		var event = {
			amount: this.amountControl.value
		};
		
		this.ttAmountChange.next(event);
	}
開發者ID:Floryzzz,項目名稱:tourists-on-a-trip,代碼行數:7,代碼來源:people-count.ts

示例2: clicked

 clicked(product) {
     this.click.next(product);
 }
開發者ID:lgl1993,項目名稱:house,代碼行數:3,代碼來源:app.ts

示例3: onKeyup

 onKeyup(val) {
   if (this.recentVal != val) {
     this.recentVal = val;
     this.changed.next(val);
   }
 }
開發者ID:data-avail,項目名稱:rb-index,代碼行數:6,代碼來源:input-changed.ts

示例4: onCheckedChange

	onCheckedChange($event, choice: IChoice) {
		this.checked.next(choice);
	}
開發者ID:QuinntyneBrown,項目名稱:angular2-dependencies-graph,代碼行數:3,代碼來源:question-card.ts

示例5: addItem

 addItem(): void {
   this.itemCreated.next(this.taskTitle.value)   
   
   this.reset();
 }
開發者ID:web-net-team,項目名稱:AngularSneakPeek-Client,代碼行數:5,代碼來源:add-card-button.ts

示例6: selectFilter

 selectFilter(type: TodoDisplayType) {
   this.newfilter.next(type);
 }
開發者ID:hourliert,項目名稱:angular2-firetodo,代碼行數:3,代碼來源:todo-filter.ts

示例7: submitTodo

 submitTodo(todoTitle: string) {
   if (todoTitle) {
     this.newtodo.next(todoTitle);
   }
 }
開發者ID:hourliert,項目名稱:angular2-firetodo,代碼行數:5,代碼來源:todo-input.ts

示例8:

 this.resortsEP.createResort(this.createResortForm.value.name).then((res) => {  
   //TODO : How to set value on controller ???
   this.createResortForm.controls.name.updateValue("");
   this.created.next(res);
 });
開發者ID:data-avail,項目名稱:rb-index,代碼行數:5,代碼來源:resort-create-form.ts

示例9: onChanged

 onChanged(value) {
   //ObservableWrapper.callNext(this.destroy, null);
   this.changed.next(value);
 }
開發者ID:data-avail,項目名稱:rb-index,代碼行數:4,代碼來源:resorts-filter.ts


注:本文中的angular2/angular2.EventEmitter.next方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。