以下代码片段运行后,在console面板显示的结果是(b)wx.onAccelerometerChange(function (res) { console.log(res.x) console.log(res.y) console.log(res.z)})
A: 移动设备在x、y、z轴的速度值
B: 移动设备在x、y、z轴的加速度值
C: 移动设备在x轴的加速度值
D: 移动设备在x和y轴的加速度值
A: 移动设备在x、y、z轴的速度值
B: 移动设备在x、y、z轴的加速度值
C: 移动设备在x轴的加速度值
D: 移动设备在x和y轴的加速度值
举一反三
- 以下代码片段运行后,在console面板显示的结果是()wx.onAccelerometerChange(function(res){console.log(res.x)console.log(res.y)console.log(res.z)}) A: 移动设备在x、y、z轴的速度值 B: 移动设备在x、y、z轴的加速度值 C: 移动设备在x轴的加速度值 D: 移动设备在x和y轴的加速度值
- 中国大学MOOC:"以下代码片段运行后,在console面板显示的结果是( ) wx.onAccelerometerChange(function (res) { console.log(res.x) console.log(res.y) console.log(res.z)})";
- 以下代码片段运行后,在console面板显示的结果是( )wx。onCompassChange(function (res) { console。log(res。direction)})。 A: 罗盘面对的方向名称 B: 罗盘旋转的加速度 C: 罗盘面对的方向度数 D: 罗盘旋转的速度
- 以下代码片段运行后,在console面板显示的结果是() wx.onCompassChange(function(res){ console.log(res.direction) })
- 中国大学MOOC: 以下代码片段,如果成功运行并点击菜单项A,则在console面板中显示的结果为( )wx.showActionSheet({itemList: [A, B, C],success (res) {console.log(res.tapIndex)},fail (res) {console.log(res.errMsg)}})