javascript-React Native:本机模块什么也不返回
作者:互联网
我是React Native的新手,我想调用原生模块以从Android获取一些字符串.我写这样的代码:
@ReactMethod
public String getToken() {
String token = "";
//then take the token
Log.i("getToken:", token);
return token;
}
然后在js中使用.
var tokenString = thismodule.getToken();
但是,当我在js中调用该方法时.我可以在logcat中看到正确的日志“ I / getToken:palapalapala”,但是js无法获得任何信息.
那么,正确的代码是什么?
解决方法:
哦,是的.我应该知道 . js和native之间的通信是异步的.桥接到本地方法的js方法现在无法返回任何内容.因此,我们必须将回调函数发送给native并在回调中获得正确的答案.
就这样.
标签:react-native,javascript,android,node-modules 来源: https://codeday.me/bug/20191027/1947669.html