Salesforce

Salesforce LWC Working on Apex in LWC (@wire , then => , param)

박성하하 2023. 11. 28. 14:36
728x90
반응형

1. Apex Class 작성

 

2-1. Bind Wire with Property

import 메서드명 from 출처
{accounts.data} -> .data 사용

 

2-2 Bind Wire with Function

import 메서드명 from 출처
{account.data} (x)  {account} (o)

 

3. Bind Imperative Method

 

4. Bind Imperative with Param

Input에서 받아온 searchKey를 findAccList메서드의 파라미터(keyword)로 사용 ({keyword:this.searchKey})
위와 같이 사용시 버튼은 없지만 검색값이 화면에 바로바로 표시된다.

 

 

 

 

728x90
반응형