Does Angular 2 have a way to store data in a JSON file?

Is there a way to read and write data in an Angular 2 application to a JSON file?

+4
source share
1 answer

No, this is not allowed.

However, you can use other ways to store your data. One of the options could use localStorage.

Check out this article .

+4
source

Source: https://habr.com/ru/post/1657170/


All Articles