此函数将数组返回为pic。 我如何在选择列表中显示来自suppose(dept_name)数组的一列。
功能
getDept(indx:number){
let array1= this.depts;
let array2= this.AllRequest;
var array = array2.map(function(e) {
var f = array1.filter(a => a.dept_id != e.dept && a.dept_id != 0);
return f; //? f.dept_id : 0
});
console.log(array[indx]);
}
HTML列表
<select type="list" name="action" [disabled]="!ALLREQUEST.isEditable">
<option [value]="getDept(i)" ><tr ></tr>
</option>
</select>