Created
January 17, 2020 19:38
-
-
Save rudmanmrrod/105d370f074a4e04f1a46aef994e21b4 to your computer and use it in GitHub Desktop.
Agregar categoría sencilla
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var results = [ | |
{ | |
"id": 3, | |
"soft_delete": false, | |
"name": "Bebidas frias", | |
"order": 1, | |
"menu": 1, | |
"sub_category": 2 | |
}, | |
{ | |
"id": 1, | |
"soft_delete": false, | |
"name": "Pastas", | |
"order": 1, | |
"menu": 1, | |
"sub_category": null | |
}, | |
{ | |
"id": 2, | |
"soft_delete": false, | |
"name": "Bebidas", | |
"order": 3, | |
"menu": 1, | |
"sub_category": null | |
} | |
] | |
results = results.filter( result => { | |
if(!result.sub_category){ | |
result.sub_category = results.filter(f => f.sub_category == result.id ) | |
return result | |
} | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment