原创 Js選擇器方法彙總之Salesforce常用

瀏覽器加載解析以及渲染的過程。 瀏覽器獲取一個HTML的文件時,會按照自上向下的順序進行解析,並在加載過程中進行渲染。 對html解析成DOM樹,對CSS 解析成CSS Rule樹,然後通過DOM樹以及CSS Rule樹構造Renderi

原创 salesforce學習資料鏈接

前提:註冊開發者環境 https://developer.salesforce.com/signup   第一步:管理員學習 https://trailhead.salesforce.com/content/learn/trails/fo

原创 Learn About Bundles and the Request Lifecycle——未完待續

                             

原创 Completed Subscribe to Platform Events

Apex測試的調試日誌是一個例外。 它們包括在同一測試執行日誌中記錄事件觸發器 有關平臺事件觸發器的注意事項 事件處理:  事件的順序基於事件重播ID。Apex觸發器可以一次接收一批事件。事件的順序在每個批次中保留。批量事件可以

原创 Monitor Asynchronous Apex

However, future jobs are not part of the flex queue currently. CronTrigger job = [SELECT Id, CronJobDetail.Id, C

原创 Define and Publish Platform Events

使用Apex發佈事件消息 由於事件發佈等效於DML插入操作,因此將應用DML限制和其他Apex調控器限制 使用Apex發佈事件消息 使用點擊發布事件消息 使用Salesforce API發佈事件消息

原创 Apex Integration Overview

Salesforce具有兩種不同的桌面用戶界面:Lightning Experience和Salesforce Classic 該模塊是爲Salesforce Classic設計的 Make Callouts to External S

原创 Control Processes with Queueable Apex

We took the simplicity of future methods and the power of Batch Apex and mixed them together to form Queueable Apex  I

原创 Schedule Jobs Using the Apex Scheduler

Create an Apex class that uses Scheduled Apex to update Lead records DailyLeadProcessor.apxc global class Dai

原创 Use Asynchronous Apex

For a long time, future methods and the batchable interface were the primary ways developers had to do asynchronous

原创 Map .NET Concepts to the Lightning Platform——list,set,map

在Apex中,字符串始終被視爲原始值類型 值和引用類型的工作方式相同,但是在Apex中,默認情況下,所有變量都初始化爲null 一個sObject只是一個Salesforce對象。 您可以將其視爲數據庫中的表。 sObject可以是

原创 Understand Event-Driven Software Architecture

下圖說明了基於事件的軟件體系結構 與請求-響應通信模型不同,基於事件驅動模型的軟件體系結構使事件生產者與事件使用者分離,從而簡化了連接系統中的通信模型。無需請求服務器即可獲取有關特定狀態的信息。 而是,系統訂閱事件通道,並在出現新狀

原创 Understand Execution Context

默認情況下,Apex在系統上下文中執行。Apex代碼可以訪問所有對象和字段 僅在絕對確定使用我們的點擊自動化工具之一無法完成同一件事時,纔想使用觸發器。 改正後的代碼 在Lightning Platform中,沒有任何應用程序或會

原创 Use Batch Apex

如果您有很多記錄要處理,例如數據清理或歸檔,則Batch Apex可能是您最好的解決方案。 假設您要使用Batch Apex處理100萬條記錄。 對於要處理的每批記錄,一次調用批處理類的執行邏輯。 每次調用批處理類時,該作業都會被放置在