我使用 ngFor 从数组中创建了一个列表,并且我正在通过其他组件导入该列表的元素。
在我的列表组件中,我使用 ngFor 来获取索引,我想在子组件中使用这个索引(参见代码)来创建动态变量,但我似乎无法让它工作。
//main list html template
<li *ngFor="#task of taskService.tasks; #i = index" class="list-group-item">
<task-item [task]="task"></task-item>
</li>
//task item component html template
<div class="read-only">
<label [contentEditable]="taskService.editable[i] == true" ng-model="task.title">{{task.title}}</label>
<p [contentEditable]="taskService.editable[i] == true" ng-model="task.description">{{task.description}}</p>
<task-actions [task]="task"></task-actions>
</div>
//task actions component html template
<button type="button" (click)="taskService.deleteTask(task.title)" class="btn btn-danger btn-xs">delete</button>
<button type="button" (click)="taskService.editTask(i)" class="btn btn-info btn-xs">Edit</button>
<button type="button" (click)="completeTask()" class="btn btn-success btn-xs">complete</button>
在“taskService”中,我有一个点击方法——editTask(i)——我希望能够传递数组项的索引
我的课看起来像这样:
export taskService {
editable = [];
editTask(i){
this.editable[i] == true;
}
}
我希望我已经解释得足够好,如果您需要更多信息,请告诉我!