我很反应原生。我需要在React Native Application中使用外部源提供的纯本机SDK。这是我找到的链接(吐司示例)。
https://facebook.github.io/react-native/docs/native-modules-android.html
我已经阅读了文档,但我真的不明白。 有人可以通过Toast模块指定真正需要写入哪些内容在使用react-native init“ProjectName”创建的react native的默认项目结构中?
答案 0 :(得分:2)
我有同样的问题。解决方案是:
const numberOfUsers = 15;
const randomIndex = Math.floor(Math.random() * numberOfUsers);
var ref = firebase.database().ref('companies/01/users');
ref.limitToFirst(randomIndex).limitToLast(1).once('value').then(snapshot =>
{
var user = snapshot.val();
// do something with the user data
});
到您的项目:import ToastAndroid
import {ToastAndroid} from 'react-native';
或点击此链接:https://facebook.github.io/react-native/docs/toastandroid.html
答案 1 :(得分:0)
import {ToastAndroid} from "react-native"
try {
// your task
} catch (e) {
ToastAndroid.show('Could not add the book.', ToastAndroid.LONG)
console.warn("Error", e);
}