EmployeeComponent.html:11错误TypeError:无法读取未定义的属性'_id' 这是我每次尝试在有角度的前端中调用id时遇到的错误
我尝试使用ngIf,但仍然给我错误
这里我有错误
<div class="col s5" >
<form #employeeForm='ngForm'(ngSubmit)="onSubmit(employeeForm)">
<input type="hidden" name="_id" #_id="ngModel"[(ngModel)]="employeeService.selectedEmployee._id" class="col s5">
<div class="row">
<div class="input-field col s12">
<input type="text" name='name' #name='ngModel'[(ngModel)]="employeeService.selectedEmployee.name" placeholder="Enter Full name" class="input-field col s12" required>
<label >Name :
<label class="red-text">*</label>
</label>
</div>
</div>
答案 0 :(得分:0)
根据仅Angular的代码,它们可能有很多可能性。一种可能是您的后端不会在前端向您发送_id给您。首先只需验证您是否获得了正确的数据