元の質問 : Custom Lightning Component broken
単純に日付型を設定できないようです。
I'm not exactly sure why, but if you try to just set the currentYear variable in the Default Field:Close Date, Salesforce will not accept it. But if you create a date attribute in the component, store the exact same value in this attribute, then call the attribute in the Close Date field, Salesforce accepts it.
正確な理由はわかりませんが、CurrentYear 変数を Default Field: Close Date に設定しようとすると、Salesforce はそれを受け入れません。ただし、コンポーネントで日付属性を作成し、この属性にまったく同じ値を保存してから、[完了予定日] 項目で属性を呼び出すと、Salesforce はそれを受け入れます。
Populating date on e.force:createRecord
一旦変数にセットしてから使えばいいみたい。
コンポーネント
<aura:attribute name="todaysDate" type="Date"/>
コントローラ
newRecord : function(component, event, helper)
{
var currentYear = $A.localizationService.formatDate(new Date(), "YYYY-12-31");
component.set("v.todaysDate", currentYear);
var createRecordEvent = $A.get("e.force:createRecord");
//change this when deploying
var RecTypeID = '0126C0000005BT9QAM';
createRecordEvent.setParams({
"entityApiName": 'Opportunity',
"recordTypeId": RecTypeID,
'defaultFieldValues': {
'Type' : 'Land',
'Budget_Status__c' : 'Pending',
'StageName' : 'Pursuit Identified',
'CloseDate' : component.get('v.todaysDate')
}
});
createRecordEvent.fire();
}