callApex()
Makes an Apex call.
Sample
Used within a JavaScript app uploaded as a static resource and referenced by lightning:container, this example calls the Apex method getAccount.
1callApex() {
2 LCC.callApex("lcc1.ApexController.getAccount",
3 this.state.name,
4 this.handleAccountQueryResponse,
5 {escape: true});
6 }Arguments
| Name | Type | Description |
|---|---|---|
| fullyQualifiedApexMethodName | string | The name of the Apex method. |
| apexMethodParameters | array | A JSON array of arguments for the Apex method. |
| callbackFunction | function | A callback function. |
| apexCallConfiguration | array | Configuration parameters for the Apex call. |
Response
None.