列表中带有参数返回数组的调用函数

时间:2019-09-17 07:27:24

标签: html angular8

此函数将数组返回为pic。 我如何在选择列表中显示来自suppose(dept_name)数组的一列。

enter image description here

功能

    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>

0 个答案:

没有答案