有没有办法从grails控制台内部调用taglib闭包?我希望能够获得grails控制台中的消息标记,我无法弄明白...
答案 0 :(得分:11)
您可以获取已配置的taglib,但大多数都希望在Web请求的上下文中运行。为了解决这个问题,你可以绑定一个模拟请求:
import grails.util.GrailsWebUtil
GrailsWebUtil.bindMockWebRequest ctx
def g = ctx.getBean('org.codehaus.groovy.grails.plugins.web.taglib.ValidationTagLib')
String message = g.message(code: 'default.button.delete.confirm.message')
您还可以通过设置请求的区域设置来获取其他语言的消息,例如
import grails.util.GrailsWebUtil
def webRequest = GrailsWebUtil.bindMockWebRequest(ctx)
webRequest.currentRequest.addPreferredLocale(Locale.GERMANY)
def g = ctx.getBean('org.codehaus.groovy.grails.plugins.web.taglib.ValidationTagLib')
String message = g.message(code: 'default.button.delete.confirm.message')
答案 1 :(得分:3)
使用@Burt console plugin这更容易,因为我们不必模拟网页请求......
import org.codehaus.groovy.grails.plugins.web.taglib.ValidationTagLib
// Getting the class name to reduce horizontal
// scrolling in StackOverflow
def g = ctx.getBean(ValidationTagLib.class.getName())
g.message(code: 'default.button.delete.confirm.message');
您可以通过在控制台中运行此代码来获取应用程序中所有tagLib的列表...
// prints a bean name per line.
ctx.getBeanNamesForType(Object).findAll {
it =~ /.*TagLib$/
} .sort() {println it}
// add false to prevent console printing the map out
false