0

テーブルでのドラッグ アンド ドロップに ng2-dragula を使用しています。

  this.dragulaService.drop.subscribe(value => {     

  let questions_group = value[3] as HTMLTableRowElement        
  let SectionTwo:Array<string> = [];
  let QuestionId:Array<string> = [];
  let OrderNo:Array<number> = [];
  var list2 = questions_group.childNodes;      

  list2.forEach( 
    function(currentValue, currentIndex,listObj) { 

      if(currentIndex!=0){           
        let sectionName2 = currentValue.lastChild.textContent
        SectionTwo.push(sectionName2)
        QuestionId.push(currentValue.firstChild.textContent)
        OrderNo.push(currentIndex)

      }         
    },
    ''
  );   });

突然、「Property 'forEach' is not exist on type 'NodeList'.」というエラーが発生し始めました。正常に動作する前は、変更を加えていませんでした。

4

2 に答える 2

0

別の方法:

  • スプレッド演算子の使用:

    var list2 = [...questions_group.childNodes]; // Take a look of the syntax
    
    list2.forEach(function(currentValue, currentIndex,listObj) => {
       // Todo
    }) 
    
于 2018-09-18T04:56:27.060 に答える