0

The application which am working is an static application which is built on Angular JS technology. I want to write data into CSV File located at particular path so that another API can read data from that path(CSV File). I had searched a lot in internet but i could not find correct solution. Could you please help me regarding this. Technology can be any client side like Angular JS,Jquery,Java Script.

user_06
  • 85
  • 2
  • 7

1 Answers1

0

You can't do that without an server like node, apache (php), ... to save the data.

-> Saving a text file on server using JavaScript

Community
  • 1
  • 1
Tune389
  • 91
  • 8
  • 1
    Is there a any way to do in opposite. I.e reading data from CSV file located at particular location.? using the same technologies – user_06 Feb 24 '15 at 10:42
  • Yes but you need the location of the file, if you have dynamic files, you can put a json with the paths/names into the folder (generated by the server or something). – Tune389 Feb 25 '15 at 07:20