I have data in the following format :
This is the roww
[
{module_id: 152, module_type: "Basics", module_name: "Pre-Reading", duration: 30,
course:{"course_name": "Python","course_id": 1}
},
{module_id: 153, module_type: "Read", module_name: "Instructional", duration: 40,
course:{"course_name": "Python","course_id": 1}
}
]
This is the course
{course_id: 1, course_name: "Python"}
Now how do I convert the data to the following format:
[
{
"module": {
"module_id": 152,
"module_type": "Basics",
"module_name": "Pre-Reading",
"duration": 30,
"course": {
"course_name": "Python",
"course_id": 1
}
},
"course": {
"course_name": "Python",
"course_id": 1
}
},
{
"module": {
"module_id": 153,
"module_type": "Read",
"module_name": "Instructional",
"duration": 40,
"course": {
"course_name": "Python",
"course_id": 1
}
},
"course": {
"course_name": "Python",
"course_id": 1
}
}
]
Please help me with this. Thank you in advance :)
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…