アプリケーションでウェブカメラを使用しています。アクセスするには、webcam.js ( https://pixlcore.com/ ) を使用しました。しかし、Eclipseで開くと、次のようなエラーが表示されます: Syntax error on token "catch", Identifier expected
. 小さなコードスニペット:
var self = this;
this.mediaDevices.getUserMedia({
"audio": false,
"video": this.params.constraints || {
mandatory: {
minWidth: this.params.dest_width,
minHeight: this.params.dest_height
}
}
})
.then( function(stream) {
// got access, attach stream to video
video.src = window.URL.createObjectURL( stream ) || stream;
self.stream = stream;
self.loaded = true;
self.live = true;
self.dispatch('load');
self.dispatch('live');
self.flip();
})
.catch( function(err) { //here shows error
return self.dispatch('error', "Could not access webcam: " + err.name + ": " + err.message, err);
});
その理由と解決方法は?