parameter
-
[LWC] js 파일에서 apex method 호출 시 JSON 형식으로 매개변수 전달하기 - How to pass parameters in JSON formatLWC 2024. 7. 6. 22:41
1. import apexMethod //jsimport updateRecord from "@salesforce/apex/freeTestLwcCmp.updateRecord"; 2. JSON 형식으로 전달할 매개변수 값 세팅 //jslet updateData = { recordId : this.recordId, templateStatus : '사용가능', mainObjLabel : '계약', mainObjApi : 'Contract', }; 3. 메서드 호출시 매개변수 값 전달 - JSON.stringify() //jsupdateRecord({updateData : JSON.stringify(updateData)}) ..
-
LWC 성공, 실패, 에러 알람 띄우기 (ShowToast) - Display success, failure, and error alarm messagesLWC 2024. 3. 19. 22:26
1. import {ShowToastEvent} 및 showToast 메서드 생성 JS 파일 import { ShowToastEvent } from 'lightning/platformShowToastEvent'; showToast(title, message, variant){ ... } showToast 메서드 호출 import { ShowToastEvent } from 'lightning/platformShowToastEvent'; //1번 export default class zz_clvs_MDE_Template_Create extends LightningElement { //취소버튼 클릭 시 전자계약 템플릿 개체 목록보기 페이지로 이동 returnListVeiw(event){ var titleInp..