'Data exportation from Learning Locker with JS array
I have data stored in xAPI format in the LRS Learning Locker and I am trying to export it to CSV format.
I followed xAPI to the letter and so I have in my statements some data stored in the JSON tree in JS arrays. See for example below my "level" parameter which is in an array with the key "other".
"context": {
"contextActivities": {
"other": [
{
"objectType": "Activity",
"id": "https://py-rates.org/xAPI/activities/levels/level1",
"definition": {
"name": {
"en-US": "Level 1",
"fr": "Niveau 1"
},
"type": "https://py-rates.org/xAPI/activities/level"
}
}
]
},
When I export my data to CSV from the Learning Locker web interface, there is the possibility to choose some fields by giving their path in the JSON tree. For example for the column "_level", I indicated: "statement.context.contextActivities.other" (see screenshot link below).
The problem is that I get the whole array in my CSV, so I need a post-processing to get only the level. I would like to be able to choose the first element of the array to retrieve only the id of the level and not the whole array. Basically, I would like to give the following path: "statement.context.contextActivities.other[0].id ". Unfortunately this syntax does not work.
Do you have any idea how to do it?
Thank you in advance for your help,
MatthieuB
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
Solution | Source |
---|