我正在尝试使用以下组件使用标准日期选择器,但是当输入的日期不在指定的最小和最大范围内时,我想显示自定义错误消息。但我无法实现它,因为我可以看到标准错误消息。我通过参考:https ://developer.salesforce.com/docs/component-library/bundle/lightning:input/example 实现了相同的功能,在此链接中我可以看到可以显示自定义错误消息。但是对我没有任何帮助,任何人都可以帮忙。 https://developer.salesforce.com/docs/component-library/bundle/lightning:input/documentation
<lightning:input aura:id="field
type="date"
name="MyDatefield"
label="MyDateField"
value="2017-09-07"
min="2017-09-05"
messageWhenRangeUnderflow="Select correct date range1"
max="2017-09-22"
messageWhenRangeOverflow="Select correct date range2"
onchange="{!c.checkValidity }"
</aura:component>