Angular 6 - Load JSON from local

前端 未结 9 2556
南笙
南笙 2020-12-14 04:26

I am trying to load a local JSONfile of two ways.

This is my json file:

{
  \"imgsesion\": \"fa_closesesion.png\",
  \"texthome\": \"volver a la home         


        
9条回答
  •  暗喜
    暗喜 (楼主)
    2020-12-14 04:48

    Updated answer - Angular 5 Service to read local .json file

    In tsconfig.json

    "resolveJsonModule": true,
    "allowSyntheticDefaultImports": true,
    "esModuleInterop": true,
    

提交回复
热议问题