React Native android APP传递参数到 js
java 代码中
Bundle bundle=new Bundle();
bundle.putString("key1","value");
// 添加对象到 mReactRootView mReactRootView.startReactApplication(mReactInstanceManager,"AwsomeProject",bundle);
在js中获取
console.log( 'key1 :'+this.props.key1);
在js中也只有 AwsomeProject 这个中才能获取的到
ios 估计也是一样的 未测试
注 key 是关键字 js会过滤掉
感谢 小康 同学的指导
原文链接:https://www.f2er.com/react/307431.html