Lightning Components Demo
A component that provides a concrete type-specific input component implementation based on the data to which it is bound. Represents an input field that corresponds to a field on a Salesforce object. This component respects the attributes of the associated field. For example, if the component is a number field with 2 decimal places, then the default input value contains the same number of decimal places. It loads the input field according to the field type. If the compone...
找不到Lightning Component Tabs
参考地址:https://help.salesforce.com/articleView?err=1&id=dev_tabdef.htm&type=5 Lightning Component Tabs Lightning component tabs make Lightning components available in the Salesforce mobile app (via the navigation list) or in Lightning Experience. Lightning components aren’t supported in Salesforce Classic. Note To expose Lightning components via Lightning component tabs, you must enable and deploy My Domain. 大意就是, 1.lightning不支持Sal...
salesforce REST services demo
@RestResource(urlMapping='/Cases/*') global with sharing class CaseManager { @HttpGet global static Case getCaseById() { RestRequest req = RestContext.request; String caseId = req.requestURI.substring(req.requestURI.lastIndexOf('/')+1); Case result = [SELECT CaseNumber, Subject, Status, Origin, Priority FROM Case WHERE Id = :caseId]; return result; } /* H...
salesforce学习资源
Please study some related Salesforce technology in advance, 官方网站: https://www.salesforce.com/cn/ Salesforce 百度百科 https://baike.baidu.com/item/Salesforce/757610 Salesforce Wiki: https://en.wikipedia.org/wiki/Salesforce.com Salesforce入门学习介绍 https://www.cnblogs.com/cjfcqnu/p/5821961.html 博客园: https://www.cnblogs.com/zero-zyq/p/5275134.html https://www.cnblogs.com/zitjubiz/p/an-architects-guide-to-the-salesforce.html ...