internal/modules/cjs/loader.js:582 throw err

前端 未结 25 2011
有刺的猬
有刺的猬 2020-11-27 04:24

I\'m getting following Console Error. Error : Cannot find module

Here is the full error i\'m getting in console. What should I do?



        
25条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2020-11-27 05:15

    Caseyjustus comment helped me. Apparently I had space in my require path.

    const listingController = require("../controllers/ listingController");
    

    I changed my code to

    const listingController = require("../controllers/listingController");
    

    and everything was fine.

提交回复
热议问题