Invalid aura:attribute type
Invalid type : WrapperClass.wrapperObj 1. 저장 시 에러나는 경우 (Inner Class 적용) salesExample.cmp SalesExampleController.cls public with sharing class SalesExampleController { ... public class WrapperObj { @AuraEnabled public String aaa {get;set;} @AuraEnabled public Boolean bbb {get;set;} public WrapperObj() { this.wrappers = new List(); } } } 2. 에러 안 나는 경우 (Outer Class 적용) salesExample.cmp SalesStock.c..
Troubleshooting
2022. 11. 17. 16:26
@salesforce/resourceUrl ~~ modules only support default imports
@salesforce/resourceUrl ~~ modules only support default imports : static resource import 할 때 중괄호 사용해서 에러남 ☞ static resource import 할 때에는 중괄호 사용 X ex) import LitElement from ‘@salesforce/resourceUrl/litElement’;
Troubleshooting
2022. 7. 7. 16:48