作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
react native 相机,onBarCodeRead 不起作用,我已经安装了 react native 相机,代码触发相机,但即使使用 onBarCodeRead 功能,它也无法读取或发现条形码。以下是我的代码和屏幕截图
import React, { Component } from 'react';
import { Image, Platform } from 'react-native';
import { connect } from 'react-redux';
import { Actions } from 'react-native-router-flux';
import { Container, Header, Title, Content, Button, Icon, List, ListItem, Text, Footer, Left, Right, Body } from 'native-base';
import styles from './styles';
import { UserLogin, username,password} from '../../actions/index.js';
import Spinner from 'react-native-loading-spinner-overlay';
import Camera from 'react-native-camera';
const glow2 = require('../../../images/glow2.png');
const backgroundImage = require('../../../images/glow2.png');
const logo = require('../../../images/logo.png');
class Qrcamera extends Component {
render() {
return (
<Container style={{ backgroundColor: '#fff' }}>
<Image source={glow2} style={styles.container} >
<Header style={{ backgroundColor: '#004774' }} >
<Left>
<Button transparent onPress={this.props.openDrawer} >
<Icon active name="menu" style={{ fontSize: 30, lineHeight: 32 }} />
</Button>
</Left>
<Body>
<Title>Scanner</Title>
</Body>
<Right />
</Header>
<Content padder style={{ backgroundColor: 'transparent' }}>
<Camera
ref={(cam) => {
this.camera = cam;
}}
style={styles.preview}
aspect={Camera.constants.Aspect.fill}
onBarCodeRead={this._bacr()}
barCodeTypes={['org.iso.QRCode']}
>
</Camera>
</Content>
</Image>
</Container>
);
}
_bacr(){
alert("hey sported barcode!");
}
}
export default connect()(Qrcamera);
最佳答案
翻译
您刚刚声明的 barCodeTypes 不是错误的吗?我的读取二维码是这样的:
barCodeTypes={[Camera.constants.BarCodeType.qr]}
而且效果很好。将您的 barCodeTypes 更改为此并重试,并确保更改此:
onBarCodeRead={this._bacr()}
进入此:
onBarCodeRead={this._bacr.bind(this)}
或者:
onBarCodeRead={()=>{this._bacr()}}
否则,当您的相机读取二维码时,它不会启动该功能。
关于javascript - react native 相机,onBarCodeRead 不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45199796/
react native 相机,onBarCodeRead 不起作用,我已经安装了 react native 相机,代码触发相机,但即使使用 onBarCodeRead 功能,它也无法读取或发现条形码
我是一名优秀的程序员,十分优秀!