gpt4 book ai didi

Javascript 相机切换不切换

转载 作者:行者123 更新时间:2023-11-28 23:59:48 25 4
gpt4 key购买 nike

我希望将相机(facingMode)从user 切换到environment。从 front 从 true 切换到 false 的意义上来说,切换似乎是有效的。但是,constraints 中的facingMode 仍然是environment

我忽略了什么?

代码笔:https://codepen.io/abenjamin/pen/qYWeXj?editors=1111

var front = false;
document.getElementById('cameraToggle').onclick = function() { front = !front; console.log(constraints) };

var constraints = { video: { facingMode: (front? "user" : "environment") } };

最佳答案

你在代码笔中重复了这行两次,一次在顶部,一次在底部:

document.getElementById('cameraToggle').onclick = function() { front = !front; console.log(constraints) };

另一个问题是原语被引用。如果你有 let x = 3; const obj = { x }; x = 4;,对象不会改变——它会继续是{ x: 3 }

您需要做的是更新约束对象本身,然后继续执行您需要对变异对象执行的任何操作。例如:

document.getElementById('cameraToggle').onclick = function() {
front = !front;
constraints.video.facingMode = front
? "user"
: "environment";
// interact with the mutated `constraints` object if needed
};

关于Javascript 相机切换不切换,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49890799/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com