查看 Wicket 中是否存在 HeaderContribution 或 ResourceReference

发布于 2024-11-01 21:15:34 字数 186 浏览 0 评论 0原文

当使用 CSSPackageResource.getHeaderContribution(ResourceReference) 或 JavascriptPackageResource.getHeaderContribution(ResourceReference) 时,有没有办法在调用 add 之前查看 css 或 JavaScript 文件是否确实存在?

When using CSSPackageResource.getHeaderContribution(ResourceReference) or JavascriptPackageResource.getHeaderContribution(ResourceReference) is there a way to see if the css or JavaScript file actually exist before calling add?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

从此见与不见 2024-11-08 21:15:34

CSSPackageResourceJavascriptPackageResource 的父级 PackageResource 上,定义了 exists() 方法:

存在

公共静态布尔值存在(类范围,
字符串路径,
语言环境语言环境,
字符串样式)

获取符合给定条件集的资源是否存在。

参数:

范围 - 此参数将用于获取用于加载包资源的类加载器,并确定它位于哪个包中。通常这是您调用此方法的类

路径 - 资源的路径

区域设置 - 资源的区域设置

样式 - 资源的样式

返回:如果可以加载资源,则返回 true,否则返回 false

只需检查 文档

On PackageResource, the parent of CSSPackageResource and JavascriptPackageResource there is method exists() which is defined:

exists

public static boolean exists(Class scope,
String path,
Locale locale,
String style)

Gets whether a resource for a given set of criteria exists.

Parameters:

scope - This argument will be used to get the class loader for loading the package resource, and to determine what package it is in. Typically this is the class in which you call this method

path - The path to the resource

locale - The locale of the resource

style - The style of the resource

Returns: true if a resource could be loaded, false otherwise

Just check out the documentation

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文