var data = {
"2017-08-09": [
{
"time": "09:00",
"available": true
},
{
"time": "13:00",
"available": true
},
{
"time": "13:30",
"available": true
},
]
}
需要的轉換
newData = [ "2017-08-09": ['09:00','13:00','13:30'] ]
我曾嘗試以下:
function recursiveFunction(collection){
var newData = [];
_.forOwn(collection, function(value, key){
newData.push({key});
value.map(item => {
if (item.available === true) newData.key = item.time
})
});
console.log(newData)
};
但也不能令人信服:/
你的小提琴與問題中的代碼完全不同,你粘貼了錯誤的鏈接嗎? – user3080953
哎呦!我想我做了,只是更新它:)謝謝 – Deano