Note: This release is in preview. Features described here don’t become generally available until the latest general availability date that Salesforce announces for this release. Before then, and where features are noted as beta, pilot, or developer preview, we can’t guarantee general availability within any particular time frame or at all. Make your purchase decisions only on the basis of generally available products and features.
sendMessage()
Sends a message from the framed JavaScript code to the Aura component.
Sample
Used within a JavaScript app uploaded as a static resource and referenced by lightning:container, this example sends a message from the app to
lightning:container.
1sendMessage() {
2 LCC.sendMessage({name: "General", value: this.state.messageToSend});
3}Arguments
| Name | Type | Description |
|---|---|---|
| userMsg | any | While the data sent in the message is entirely under your control, by convention it’s an object with name and value fields. |
Response
None.