반응형

에러 라인

error Delete '.....' prettier/prettier

  1 error and 0 warnings potentially fixable with the `--fix` option.

 

해결방법 

npm run lint -- --fix

 

 

반응형
반응형

app.post("주소" , function(req,res) {

     for(var i= req.body.length; i++)

     {

//추가할 data

          req.body[i].c1 = "c5"

          req.body[i].c2 = "c4"

          req.body[i].c3 = "c3"

          req.body[i].c4 = "c2"

          req.body[i].c5 = "c1"

      }

});

반응형

'프로그램 관련 > Node js' 카테고리의 다른 글

warnings potentially fixable with the --fix Error  (0) 2021.11.04
node bit 변경시 주의사항  (0) 2021.09.30
반응형

만약 node 32bit 에서 64bit로 변경시에

프로젝트 node_modules 폴더를 제거 후 

새로 npm install 명령으로 설치해야합니다.

 

필자는 32비트에서 64비트로 변경후 npm 명령어가 안먹어  다시설치하게 되었습니다.

반응형

+ Recent posts