两个数组和1个对象合并成一个数组对象的排列组合
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
}]
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)