我需要测试资源文件(例如图像)是否存在,如果不存在,我将显示另一个图像。 我的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')}">
<%}%>
如何在Grails中测试文件是否存在?方法的代码是什么boolean resExists()
答案 0 :(得分:2)
我找到了答案:
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')
答案 1 :(得分:2)
我在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("")
答案 2 :(得分:1)
上面的答案对我来说不适用于从插件中使用,打包为生产战争。我现在使用以下内容:
GrailsConventionGroovyPageLocator groovyPageLocator
def resExists(resPath) {
def resource = groovyPageLocator.findTemplateByPath(resPath)
resource
}