전체 글 275

비동기

async function fetchData(id) { // 데이터를 가져오는 비동기 함수 // 예를 들어, 백엔드 API 호출이라고 가정합니다. // ID에 해당하는 데이터를 가져옵니다. } async function parallelFetchData(dataIds) { try { const promises = dataIds.map(id => fetchData(id)); // 데이터를 병렬로 가져오는 Promise 배열 생성 const results = await Promise.all(promises); // 모든 Promise가 완료될 때까지 기다림 // 결과 처리 for (const result of results) { // 결과를 사용하는 로직을 구현합니다. } } catch (error) { //..

카테고리 없음 2023.07.11

[프로그래머스] 문자열 출력하기 JS

문자열 출력하기 문제 설명 문자열 str이 주어질 때, str을 출력하는 코드를 작성해 보세요. 제한사항 1 ≤ str의 길이 ≤ 1,000,000 str에는 공백이 없으며, 첫째 줄에 한 줄로만 주어집니다. 입출력 예 입력 #1 HelloWorld! 출력 #1 HelloWorld! 방법1. const readline = require('readline'); const rl = readline.createInterface({ input: process.stdin, output: process.stdout }); let input = []; rl.on('line', function (line) { input = [line]; }).on('close',function(){ str = input[0]; con..

Validation by finding required fields - LWC (Salesforce)

Validation by finding required fields - LWC (Salesforce) How to use reportValidity? 필드들을 작성하고 save를 누르면 필드를 채우지 않은 것만 알림을 주고싶다! 어떻게 해야할까 import {LightningElement} from 'lwc'; export default class Practice extends LightningElement { selectedValue = ''; fruitOptions = [ {label: 'Apple', value: 'apple'}, {label: 'Banana', value: 'banana'}, {label: 'Orange', value: 'orange'}, {label: 'Grape', value:..

카테고리 없음 2023.04.30

[ADX-201E] 세일즈포스 어드민 덤프 2023 문제풀이(1)

Salesforce.ADX-201E.v2023-02-04.q59 2023년 2월 4일 버전 1번부터 30번까지 해설 풀이 틀린게 있을 수 있음! 1. Ursa Major Solar uses the custom object Product Development to track Ideas R&D is wording on. A former administrator added the custom object Potential Name with a lookup to Product Development to allow R&D to track names under consideration for those product. The R&D manager recently ran a record and noticed seve..

카테고리 없음 2023.02.26

[APEX] SObjectd의 ID로 sObject type 반환하기 - Schema 익히기 1 (How to get sObject type from the Id ? )

SObjectd의 ID로 sObject type 반환하기 - Schema 사용 익히기 1 List 타입의 파라미터를 전달받아, 동일한 크기의 배열에 각각의 ID 가 어떤 SObject Type 인지를 String 으로 담아 반환하는 메서드를 작성해주세요 입출력 예시) ['001abcdefgefkdekdy', '003abzzzfyyfkdekdy'] => ['Account','Contact'] 반환 세일즈포스 ID 는 앞 세자리 001,,002,,003등 KeyPrefix로 구분한다!!! public static String [] returnSobjectTypeFromListID(ListinputRecordId) { // Object Type 담을 변수 (최종 반환 값) String [] objectName..

카테고리 없음 2023.02.22

[세일즈포스] Static SOQL VS Dynamic SOQL

Dynamic SOQL 사용하는 이유 SOQL 동적 쿼리는 런타임에 Apex 코드가 포함된 문자열로 SOQL 쿼리 생성을 참조한다. 쿼리 프로세스 속도를 높이고 서비스를 개선하는 데 유용합니다. SOQL vs SOSL SOQL SOSL Full Name Salesforce Object Query Language Salesforce Object Search Language Used In: List Views, Reports, Apex (Global, Sidebar, Advanced) Search, Apex Indexing Happens: 동기적 - Synchronously (Can have Custom Indexes or Standard Indexes) Happens Asynchronously. Usual..

Salesforce 2023.02.12

[Hands-on Challenge] Create an Apex class that returns both contacts and leads based on a parameter - Salesforce

https://trailhead.salesforce.com/ko/content/learn/modules/apex_database/apex_database_sosl 매개 변수와 일치하는 이름 또는 성을 가진 연락처와 리드를 모두 반환하는 클래스 Create an Apex class that returns both contacts and leads based on a parameter. To pass this challenge, create an Apex class that returns both contacts and leads that have first or last name matching the incoming parameter. The Apex class must be called ContactA..

Salesforce 2023.02.12