我想在react-native上使用套接字流。我搜索了如何使用它,但没有找到任何答案。然后,我在我的react项目文件夹中安装了this.$store.getters.getTodoById(2) // -> { id: 2, text: '...', done: false }
,但出现了一些错误。还有另一种方法吗?还是可以使用另一个软件包代替?(它需要在不使用webRTC的情况下从nodejs服务器监听音频)
npm install socket.io-stream
编辑:我修复了错误:捆绑失败:错误:无法使用window.navigator.userAgent='react-native';
import io from 'socket.io-client/dist/socket.io';
import ss from 'socket.io-stream';
export default class App extends Component{
constructor(){
super();
this.socket = io('localhost:3000',{jsonp: false})
let stream = ss.createStream();
}
}
从...解析模块流。现在我得到npm install stream --save