符号 'jquery.include_datepicker' 未定义

Symbol 'jquery.include_datepicker' is not defined

我和 this 人有类似的问题,但那里仍然没有答案。

也许 SO 中的好人可以帮助我。提前致谢。

这是我在 AppModule.java

中的 contributeJavaScriptStackSource
public static void contributeJavaScriptStackSource(MappedConfiguration<String, JavaScriptStack> configuration, @Symbol(JQuerySymbolConstants.SUPPRESS_PROTOTYPE) boolean suppressPrototype) {
    configuration.overrideInstance("core-datefield", JQueryDateFieldStack.class);
}

您似乎需要使用其中一个符号提供程序为此符号定义一个值,即 ApplicationDefaults:

public static void contributeApplicationDefaults(
        MappedConfiguration<String, Object> configuration)
{
    // ... set it to "true" or "false" explicitly
    configuration.add(JQuerySymbolConstants.INCLUDE_DATEPICKER_I18N, "true");
}

如果设置为 "true",库将尝试使用本地化消息,source code is here