const userIds = [1, 2]
const dates = ["2021-01-09", "2021-01-10"]
const obj = {
"time_from": "09:00:00",
"time_to": "20:00:00",
"rest_hours": 1
}
最终结果
[{
"user_id": 1,
"date":"2021-01-09"
"time_from": "09:00:00",
"time_to": "20:00:00",
"rest_hours": 1
},{
"user_id": 1,
"date":"2021-01-10"
"time_from": "09:00:00",
"time_to": "20:00:00",
"rest_hours": 1
},{
"user_id": 2,
"date":"2021-01-09"
"time_from": "09:00:00",
"time_to": "20:00:00",
"rest_hours": 1
},{
"user_id": 2,
"date":"2021-01-10"
"time_from": "09:00:00",
"time_to": "20:00:00",
"rest_hours": 1
}]
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…