我在这里遵循了React Native
教程的第一步:
https://facebook.github.io/react-native/docs/getting-started.html
然后我想从设备传感器中读取信息。
为此,我还遵循了本教程:
https://medium.com/react-native-training/using-sensors-in-react-native-b194d0ad9167
并得到以下代码(只需从此处复制/粘贴):
// Reference:
// https://medium.com/react-native-training/using-sensors-in-react-native-b194d0ad9167
// https://react-native-sensors.github.io
import React, { Component } from 'react';
import {
StyleSheet,
Text,
View
} from 'react-native';
import { Accelerometer } from "react-native-sensors";
const Value = ({name, value}) => (
<View style={styles.valueContainer}>
<Text style={styles.valueName}>{name}:</Text>
<Text style={styles.valueValue}>{new String(value).substr(0, 8)}</Text>
</View>
)
export default class App extends Component {
constructor(props) {
super(props);
new Accelerometer({
updateInterval: 400 // defaults to 100ms
})
.then(observable => {
observable.subscribe(({x,y,z}) => this.setState({x,y,z}));
})
.catch(error => {
console.log("The sensor is not available");
});
this.state = {x: 0, y: 0, z: 0};
}
render() {
return (
<View style={styles.container}>
<Text style={styles.headline}>
Accelerometer values
</Text>
<Value name="x" value={this.state.x} />
<Value name="y" value={this.state.y} />
<Value name="z" value={this.state.z} />
</View>
);
}
}
const styles = StyleSheet.create({
container: {
flex: 1,
justifyContent: 'center',
alignItems: 'center',
backgroundColor: '#F5FCFF',
},
headline: {
fontSize: 30,
textAlign: 'center',
margin: 10,
},
valueContainer: {
flexDirection: 'row',
flexWrap: 'wrap',
},
valueValue: {
width: 200,
fontSize: 20
},
valueName: {
width: 50,
fontSize: 20,
fontWeight: 'bold'
},
instructions: {
textAlign: 'center',
color: '#333333',
marginBottom: 5,
},
});
这是您可以下载并立即尝试的完整存储库:
$ git clone https://github.com/napolev/react-native-app
$ cd react-native-app
$ npm i
$ expo start
我的问题是我执行以下操作后:$ expo start
,出现以下错误:
Native modules for sensors not available. Did react-native link run successfully?
如下图所示:
关于如何进行这项工作的任何想法?
谢谢!
答案 0 :(得分:0)
这可能是由于您使用的是 Expo ,而react-native-sensors
需要完整版本的 React Native 。
要使用react-native-sensors
,您可能必须退出应用程序,然后安装依赖项。如果退出应用程序,则需要在开发计算机上安装Xcode(适用于iOS)和Android Studio(适用于Android)。
有关Expo和React-Native之间差异的更多详细信息,请查看以下SO答案: What is the difference between Expo and React Native?
但是,Expo确实可以访问一些传感器信息,您可以在https://docs.expo.io/versions/latest/sdk/accelerometer
上阅读有关使用加速度计的更多信息。Expo还可以访问gyroscope,magnetometer和pedometer,尽管我无法在docs中看到晴雨表
答案 1 :(得分:0)
我有一个类似的问题,为我解决的是使用npx
npx react-native链接react-native-sensors;
https://blog.npmjs.org/post/162869356040/introducing-npx-an-npm-package-runner
然后我清除了应用程序数据并从手机中删除了该应用程序,然后重新构建!