|
|
|
|
346
|
|
346
|
|
347
|
#### The `window.ReactNativeWebView.postMessage` method and `onMessage` prop
|
347
|
#### The `window.ReactNativeWebView.postMessage` method and `onMessage` prop
|
348
|
|
348
|
|
349
|
-Being able to send JavaScript to the web page is great, but what about when the web page wants to communicate back to your React Native code? This where `window.ReactNativeWebView.postMessage` and the `onMessage` prop come in.
|
|
|
|
|
349
|
+Being able to send JavaScript to the web page is great, but what about when the web page wants to communicate back to your React Native code? This is where `window.ReactNativeWebView.postMessage` and the `onMessage` prop come in.
|
350
|
|
350
|
|
351
|
You _must_ set `onMessage` or the `window.ReactNativeWebView.postMessage` method will not be injected into the web page.
|
351
|
You _must_ set `onMessage` or the `window.ReactNativeWebView.postMessage` method will not be injected into the web page.
|
352
|
|
352
|
|