- 在aura component中显示today - 反映running user的time zone
var timezone = $A.get("$Locale.timezone");
var date = new Date();
// Returns the date string in the format "yyyy-MM-dd"
$A.localizationService.getDateStringBasedOnTimezone(timezone, date, function(today){
component.set("v.LastEnrichedOn", today);
});