PDII 문제 121

<apex:actionRegion>에 대한 올바른 정의를 선택하십시오.

PDII 문제 122

회사는 계정이 업데이트될 때마다 외부 시스템에 알려야 합니다. 다음 코드는 어떤 LimitException을 트리거할 수 있습니까? Trigger AccountTrigger on Account (업데이트 후) { for (Account updatedAccount : Trigger.new) { AccountTriggerHelper.notinyxternalSystem(updatedAccount.id); } } public class AccountTriggerHelper { future(callout=true) public static void notinyxternalSystemlId accountId) { Account acc = [Select id, name from.Account where accountId = :accountId]; //새로운 http 객체 인스턴스화 Http h = new Http(); HttpRequest 요청 = 새로운 HttpRequest(); req.setEndpoint('http://example.org/restService'); req.setMethod('POST'); req.setBody(JSON.serialize(acc)); HttpResponse res = h.send(req); } }

PDII 문제 123

개발자는 Lightning 구성 요소에서 타사 JavaScript 라이브러리를 어떻게 참조해야 합니까?

PDII 문제 124

비동기 Apex를 사용해야만 수행할 수 있는 사용 사례는 무엇입니까?

PDII 문제 125

A developer created the code to perform an HTP GET request to an external system.

코드가 실행되면 콜아웃이 실패하고 Developer Console에 다음 오류가 나타납니다. System.CalloutException: Unauthorized endpoint 개발자가 콜아웃 예외에 구현해야 하는 권장 접근 방식은 무엇입니까?