小编Eth*_*rak的帖子

反应本机检测长按结束

我的问题很简单,我试图检测 onLongPress 事件的结束。基本上是在用户松开按键时。

我尝试了 TouchableWithoutFeedback 中所有可能的事件,但一次只有一个事件被触发。

import React from 'react'

import {
	View,
	Text,
	Dimensions,
	CameraRoll
} from 'react-native'

import Camera from 'react-native-camera';

const { width, height } = Dimensions.get('window')
class ImageBrowser extends React.Component {
	static navigationOptions = {
		title: 'Unsplash Images',
	}

	state = {
		images: [],
		loading: true,
		page: 1,
		isRecording : false
	}

	takeVideo(){
		this._recordVideo.bind(this);
	}

	_recordVideo(){
		this.camera.capture({mode: Camera.constants.CaptureMode.video})
			.then((data) => {
				console.log(data);
			})
			.catch((err) => {
				console.log(err)
			})
	}

	_stopRecord(){
		this.camera.stopCapture();
	}

	render() {
		return ( …
Run Code Online (Sandbox Code Playgroud)

touch react-native

7
推荐指数
3
解决办法
1万
查看次数

在 Firebase 中按 childs 的值查询

{
 "users" : {
  "1320104182" : {
   "datas" : {
    "bio" : "some_data",
    "picture" : "some_data",
    "username" : "some_data",
    "website" : "some_data",
    "followers" : 14,
   }
  },
  "3271376571" : {
   "datas" : {
    "bio" : "some_data",
    "picture" : "some_data",
    "username" : "some_data",
    "website" : "some_data",
    "followers" : 10,
   }
  }
 }
}
Run Code Online (Sandbox Code Playgroud)

我是 Firebase 的新手,我正在尝试在这里进行多种思考,但到目前为止没有任何成功。

如何在不知道密钥的情况下通过“用户名”检索用户?

或者我如何按关注者订购用户?

我尝试了我可以在文档中找到的所有内容几个小时,我很绝望。

firebase react-native firebase-realtime-database

1
推荐指数
1
解决办法
1万
查看次数