mirror of
https://github.com/zhigang1992/react-native.git
synced 2026-04-01 09:23:16 +08:00
Serialize params when making/queuing native call
Reviewed By: mhorowitz Differential Revision: D3460507 fbshipit-source-id: a0600ffe3da89791af3eb64fc2973eb6aafa7d2b
This commit is contained in:
committed by
Facebook Github Bot
parent
e3f96acf26
commit
df6d18358e
@@ -119,12 +119,17 @@ JSCExecutor::JSCExecutor(std::shared_ptr<ExecutorDelegate> delegate,
|
||||
}
|
||||
|
||||
folly::dynamic config =
|
||||
folly::dynamic::object("remoteModuleConfig", std::move(nativeModuleConfig));
|
||||
folly::dynamic::object
|
||||
("remoteModuleConfig", std::move(nativeModuleConfig));
|
||||
|
||||
|
||||
SystraceSection t("setGlobalVariable");
|
||||
setGlobalVariable(
|
||||
"__fbBatchedBridgeConfig",
|
||||
folly::make_unique<JSBigStdString>(detail::toStdString(folly::toJson(config))));
|
||||
setGlobalVariable(
|
||||
"__fbBatchedBridgeSerializeNativeParams",
|
||||
folly::make_unique<JSBigStdString>(""));
|
||||
}
|
||||
|
||||
JSCExecutor::JSCExecutor(
|
||||
|
||||
Reference in New Issue
Block a user