Post CSV

When using the CSV logger, post data to the server

The postCsv task is responsible for posting CSV data to the server. It is a good way to save data in a simple easy to use format. In fact, you can use this simple server in order to save it.

In order to use the postCsv task, you should set up csv logging in the task settings:

API.addSettings('logger', {type:'csv', url:'csv.php'});

Then, whenever you want in your task you can send the data using the postCsv task. Any properties of the task object are merged into the logger settings (so you can for example change the url for posting).

{ type:'postCsv', url:'data.php' }
Last modified March 11, 2021: setup hugo (11980dc)