【发布时间】:2019-09-09 11:43:58
【问题描述】:
每当我单击 HTML 表格中的一行时,我都会尝试调用一个函数,但它不工作并且没有给出任何错误。
我已经尝试了几件事,在线代码显示我尝试的方式应该可以工作。
我的代码如下:
HTML:
<h2>Userstories</h2>
<button (click)="onNewStory()">New Story</button>
<table>
<tr *ngFor="let story of userstories" ng-click="onUpdate(story)" [class.selected]="story === selectedStory">
<td>{{story.id}}</td>
<td>{{story.name}}</td>
<td><button ng-click="onUpdate(story)">Click me!</button></td>
</tr>
</table>
<app-userstory-detail [story]="selectedStory"></app-userstory-detail>
我的 .ts 看起来像这样:
selectedStory: UserStory;
onNewStory() {
var newStory = {id:this.userstories[this.userstories.length-1].id+1, name:"", description:"Deze is nieuw", status:"open", owner:USERS[1]};
this.userstories.push(newStory);
this.selectedStory = newStory;
}
onUpdate(userstory: UserStory): void {
this.selectedStory = userstory;
console.log(this.selectedStory);
}
当前,当我尝试调用 onUpdate 方法时,我的控制台没有打印日志。预期的结果是在日志中看到一些输出,但我不知道为什么它没有触发 onUpdate 方法。
【问题讨论】:
-
用
(click)替换ng-click