当<View
style={this.props.style}
{...this._panResponder.panHandlers}
onLayout={this._onLayout}>
<Image style={{
position: 'absolute',
top: this.state.offsetTop + this.state.top,
left: this.state.offsetLeft + this.state.left,
width: this.props.imageWidth * this.state.zoom,
height: this.props.imageHeight * this.state.zoom
}}
source={this.props.source} >
<View style={{ backgroundColor: 'rgba(0,0,0,0)' }}>
<TextInput style={{ backgroundColor: 'rgba(0,0,0,0)' }} />
</View>
</Image>
</View>
在浏览器中连接时,会显示对活动网络摄像头和麦克风的权限,
我的问题是如何设置每个浏览器自动允许用户媒体权限?
答案 0 :(得分:1)
在Firefox中,您可以在弹出窗口中选择“始终”。
在Chrome中,您可以使用--use-fake-ui-for-media-stream启动它。还有一些政策:VideoCaptureAllowed和VideoCaptureAllowedUrls。