2016-12-26 13 views
0

私は、クレジットカード情報をスキャンするための反応ネイティブで書かれたコードを持っています。私はhttps://github.com/kayla-tech/react-native-card-ioに続いた。スキャナは私のカード番号を読むことができますが、私の満了とcvvを読むことに失敗します。以下はコードです。Reactネイティブクレジットカードスキャナの問題に直面

componentDidMount() { 
CardIOUtilities.preload(); 
} 

alertfunction(out){ 
this.props.navigator.replace({id:'CreditCardPayment'}) 
console.log(out); 
} 

    <View> 
     <CardIOView 
     style={styles.preview} 
     hideCardIOLogo={true} 
     allowFreelyRotatingCardGuide={true} 
     scanInstructions={'Hold card here. It will scan automatically.'} 
     scannedImageDuration={2} 
     detectionMode={CardIOView.automatic} 
     scanExpiry={true} 
     didScanCard={result => this.alertfunction(result)} />     
    </View> 

助けてください。自動モードがCardIODetectionModeCardImageAndNumber、 として開始したがスキャンは、合理的な時間内に成功しなかった場合、バックCardIODetectionModeCardImageOnlyにフォールのでcardImageAndNumber:自動、 使用検出モード:あなた

答えて