如何在运行时检查资源文件是否存在[grails]?

发布于 2024-08-18 20:03:01 字数 397 浏览 6 评论 0原文

我需要测试资源文件(例如图像)是否存在,如果不存在,我将显示另一个图像。 我的 GSP 视图代码如下所示:

<% if (resExists(dir: "images", file:"img.jpg")) {%>
  <img src="${g.resource(dir:'images',file: 'img.jpg')}">
<% else { %>
  <img src="${g.resource(dir:'images',file: 'noimg.jpg')}">
<%}%>

How can I test for a file是否存在于 Grails 中? boolean resExists()方法的代码是什么

I need to test whether a resource file (an image, for instance) exists and if not, I will display another image.
My GSP view code looks like:

<% if (resExists(dir: "images", file:"img.jpg")) {%>
  <img src="${g.resource(dir:'images',file: 'img.jpg')}">
<% else { %>
  <img src="${g.resource(dir:'images',file: 'noimg.jpg')}">
<%}%>

How can I test for a file existence in Grails? What is the code of the method boolean resExists()

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

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

发布评论

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

评论(3

弱骨蛰伏 2024-08-25 20:03:01

我找到了答案:

def resExists(resPath)  {
    def resFile = grailsApplication.parentContext.getResource(resPath)
    resFile?.exists()
}

或者

def resExists(resPath)  {
    def resFile = request.servletContext.getResource(resPath)
    resPath
}

你用 resExists('images/img.jpg') 来调用它

I found out the answer:

def resExists(resPath)  {
    def resFile = grailsApplication.parentContext.getResource(resPath)
    resFile?.exists()
}

or

def resExists(resPath)  {
    def resFile = request.servletContext.getResource(resPath)
    resPath
}

And you call it with resExists('images/img.jpg')

寄离 2024-08-25 20:03:01

我在 GSP 中完成了以下操作:

<g:set var="flag" value="${new File(grailsApplication.mainContext.servletContext.getRealPath("images/sgs-geosol/sign/${sec.username()}.gif")).exists()}"></g:set>

<g:if test="${flag}">

</g:if>

下面的代码返回 Grails 应用程序的真实路径:

grailsApplication.mainContext.servletContext.getRealPath("")

I've done the following in GSP:

<g:set var="flag" value="${new File(grailsApplication.mainContext.servletContext.getRealPath("images/sgs-geosol/sign/${sec.username()}.gif")).exists()}"></g:set>

<g:if test="${flag}">

</g:if>

The code below returns the real path of the Grails app:

grailsApplication.mainContext.servletContext.getRealPath("")
撩人痒 2024-08-25 20:03:01

当在插件中使用时,上面的答案对我不起作用,打包为生产战争。我现在使用以下内容:

GrailsConventionGroovyPageLocator groovyPageLocator

def resExists(resPath) {
    def resource = groovyPageLocator.findTemplateByPath(resPath)
    resource
}

The above answer did not work for me when used from within a plugin, packaged as a production war. I now use the following:

GrailsConventionGroovyPageLocator groovyPageLocator

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