Source File Not Found in Angular CLI project

后端 未结 11 1386
臣服心动
臣服心动 2021-01-03 17:50

Hi I have this folders in my project But When I run I get this error

Any idea please?

regards

相关标签:
11条回答
  • 2021-01-03 18:18

    This usually happens when you try to create a file using your IDE viz VS code etc. while your code is still compiling. You can stop the server using ctrl+c and then start then start it again using ng serve command to resolve the issue. Make sure that you saved all the files before running ng serve command .

    0 讨论(0)
  • 2021-01-03 18:26

    Thanks to @Hisham Afzal Ahamed for the solution (stopping and re-starting the Angular compiler).

    • Stop the compiler: CTRL-C, CTRL-C (or CTRL-C then Y)
    • Restart: ng serve (or whatever else you're using e.g. a custom npm script)

    Basically the Angular CLI sometimes doesn’t ‘see’ files that have been pulled in (e.g. when doing a merge while your compiler is running). Very useful to know. As a general time saver, If you’re pulling files into your solution or doing something similar, or you get an Angular compiler error that makes no sense, or you've made significant changes somehow, it’s always worth stopping then restarting the compiler to do a fresh build - it can save so many headaches!

    0 讨论(0)
  • 2021-01-03 18:28

    Rerunning ng serve should help fix the issue. You must have added empleado.ts while the local server was still running, hence Angular would not have seen the file.

    0 讨论(0)
  • 2021-01-03 18:31

    Try to put your empleado.ts file into assets folder and then fetch the file from there.

    As, angular recommends to put all your resources in the assets folder including images/fonts/json etc and access from there.

    PS: assuming this file contains your static content like dummy data etc.

    0 讨论(0)
  • 2021-01-03 18:31

    I guess empleado.ts is your class model for empleado, so you need to import in in your app.module

    0 讨论(0)
提交回复
热议问题