- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有以下 json 树:
{
"workout" : {
"Monday, 22 Apr, 2019" : {
"exercise" : {
"Chest Press Machine" : {
"-Ld5FCV-q_pnPvT9MICU" : {
"reps" : "10",
"set" : "1",
"weight" : "70"
},
"-Ld5FJDqxepyhCN3twrM" : {
"reps" : "8",
"set" : "2",
"weight" : "75"
}
},
"Decline Dumbbell Bench Press" : {
"-Ld5SCZhUpmrnBYhw-xK" : {
"reps" : "8",
"set" : "1",
"weight" : "24"
}
},
"Incline Barbell Bench Press" : {
"-Ld3wdB0mKZB9hEJ_9gF" : {
"reps" : "8",
"set" : "1",
"weight" : "55"
}
}
}
},
"Saturday, 27 Apr, 2019" : {
"exercise" : {
"Decline Dumbbell Flyes" : {
"-LdTqpAEpVaE8VHVH_Hq" : {
"reps" : "10",
"set" : "1",
"weight" : "10"
}
}
}
}
如何从不同日期的每个锻炼类(class)中检索锻炼名称,即“胸部推举机”和“下斜哑铃卧推”?我的目标是在数组“exerciseList”中对这些值进行排序。
到目前为止,我已经使用下面的代码检索了某个日期内的练习,但我不知道如何定位名称。
refExerciseList.child("workout").observe(DataEventType.value, with: {(snapshot) in
let items = snapshot.value as! [String: Any]
print(snapshot)
for i in Array(items.values){
print(i)
}
})
提前致谢。
最佳答案
你可以试试
var exerciseList = [String]()
refExerciseList.child("workout").observe(DataEventType.value, with: {(snapshot) in
let items = snapshot.value as! [String: [String:[String:Any]]]
print(snapshot)
for i in Array(items.values){
for inner in Array(i.values){
exerciseList += Array(inner.keys)
}
}
})
关于swift - 使用区分子节点从 Firebase 检索节点,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55883157/
使用 threejs,我尝试使用以下示例: http://threejs.org/examples/#css3d_molecules 问题是在那个例子中,从灰色球到红色球的键应该是双键。我发现了一些建
我有一个分子测试,可以启动 2 个 Docker 容器,用于一次测试 2 个应用程序版本。 dependency: name: galaxy driver: name: docker lint
假设我们依次应用了 3 个过滤器: b, a = iirfilter(...) # or bilinear(...) or anything else producing b, a y = lfil
在显式传递命令后,服务模块似乎没有启动我的 docker 守护进程。 Ansible 未在目标主机中启动 docker 守护进程。任务: - name: Install Docker apt:
我见过有人使用 pip install docker-py 或 pip install 'molecule[docker]'。 我相信它们是相似的(等价的?) 我读了https://molecule.
我是一名优秀的程序员,十分优秀!