gpt4 book ai didi

react-native - 使用 sha256 响应 native

转载 作者:行者123 更新时间:2023-12-05 06:32:46 30 4
gpt4 key购买 nike

我正在尝试使用 this react-native 库来做 sha256 散列。这是我的代码:

import React, {Component} from 'react'
import { AppRegistry, Text, View} from 'react-native'
import {sha256} from 'react-native-sha256'

export default class CyrptoTest extends Component {
constructor(props){
super(props)
}

componentDidMount(){
sha256("test").then(hash => {
console.log(hash)
})
}

render(){
return(
<View style={{padding:30}}>
<Text>this is CryptoTest 1</Text>
</View>
)
}
}

我收到此错误:undefined is not an object (evaluating 'sha256lib.sha256')
我不知道这是为什么或如何解决这个问题,感谢任何帮助,谢谢

附言:在我做任何这些之前,我首先在命令行中运行它:

yarn add react-native-sha256
react-native link

还要在我的 Mac 上的模拟器中运行该应用程序,我这样做:

react-native start
react-native run-ios

最佳答案

我遇到了同样的问题,在我的例子中,我使用的是设备的 react native cli 调试服务器主机和端口,它是通过 ./gradlew clean 解决的,并在手机上重新编译应用程序。

关于react-native - 使用 sha256 响应 native ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51088470/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com