为什么 KaiOS 模拟器 (B2G) 中的摄像头不工作?

Why camera in KaiOS emulator (B2G) not working?

我想使用 KaiOS 技术进行二维码扫描,但这在 KaiOS 模拟器中不起作用。我正在使用模拟器 2.2 版。但是,我在网络浏览器上试了一下,摄像头可以用。

在 KaiOS 手机上,您必须像下面这样使用 mozActivities

var cameraActivity = new MozActivity({
    name: "pick",
    data: {
        type: ["image/*"]
    }
});

cameraActivity.onsuccess = function () {
    console.log('The received photo blob is' + this.result.blob);
};

cameraActivity.onerror = function () {
    console.error('Unable to open camera from device ');
};

请参阅此link here了解更多详情。