component
-
LWC 컴포넌트 url로 호출하는 방법 - How to call with LWC component urlLWC 2024. 9. 10. 12:01
원하던 기능이 드디어 Release 되었다! 기존에는 lwc 컴포넌트를 url로 직접 호출하는 것이 불가능하여불필요한 aura 컴포넌트를 생성하고 url로 aura 컴포넌트를 호출하여aura 컴포넌트 내부에서 lwc 컴포넌트를 호출하는 방식으로 구현하였다. 이제 url을 통해 lwc 컴포넌트를 바로 호출가능하게 되었다! 1. xml 파일에 lightning_UrlAddressable 추가 xml version="1.0" encoding="UTF-8"?>LightningComponentBundle xmlns="http://soap.sforce.com/2006/04/metadata"> apiVersion>61.0apiVersion> isExposed>trueisExposed> targe..
-
lwc 로딩 중 아이콘 화면에 표시하기 (Spineer) - Displaying icon on screen while loading LWCLWC 2024. 3. 19. 22:21
1. 를 사용하면 된다. 2. 작업예시 //JS파일 import { LightningElement, track } from 'lwc'; export default class MyComponent extends LightningElement { @track isLoading = false; // 백엔드 작업을 수행하는 메서드 handleBackendWork() { // 작업 중인 상태를 true로 설정하여 작업 중 아이콘을 화면에 보여줌 this.isLoading = true; // 백엔드 작업 수행 // (예: Apex 호출, 비동기 작업 등) // 작업이 완료되면 작업 중인 상태를 false로 설정하여 아이콘을 감춤 this.isLoading = false; } } 3. developer 라이브러리 참..